Hi! Could we please enable some services and cookies to improve your experience and our website?
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;