{}Snippt
ExploreTags
New

Tags

Browse snippets grouped by topic.

react3utils3hooks2typescript2bash1database1go1http1linux1python1sql1

#database

Postgres upsert with ON CONFLICT

@linuxgnuยท2d ago

SQL
-- 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)
15601#database #sql
{}SnipptShare code, instantly.
ExploreTagsNew snippetSearch