eolas/neuron/77a73718-e886-48cc-8cdf-d7b948def2d1/SQLite.md
2024-11-14 13:10:51 +00:00

305 B

tags created
databases
SQL
SQLite
Wednesday, November 13, 2024

SQLite

INSERT OR IGNORE INTO

If table has a UNIQUE constraint on a field, insert if it is unique otherwise skip without throwing a constraint error.

INSERT OR IGNORE INTO table_name (value) VALUES (:value)