Browse snippets grouped by topic.
@linuxgnuยท2d ago
-- Insert a row, or update it if the unique key already exists INSERT INTO settings (user_id, key, value) VALUES ($1, $2, $3) ON CONFLICT (user_id, key)