SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table tbl (name varchar primary key, age int, val int); INSERT INTO tbl (name, age, val) VALUES ('Alex', 19, 5467); select * from tbl; INSERT INTO tbl (name, age, val) VALUES ('Alex', 19, 5467), ('Elton', 23, 1200), ('Casper', 34, 49712) ON CONFLICT (name) DO NOTHING; select * from tbl;
Stuck with a problem? Got Error? Ask ChatGPT!
Copy Clear