hi all, how can we `insert` or `update` if exist...
# squarelibraries
b
hi all, how can we
insert
or
update
if exist ?
b
how would you do it with sqlite?
b
i guess
Copy code
INSERT OR REPLACE INTO table(column_list)
VALUES(value_list);
b
Then maybe that’s it?
đź‘Ť 1