“Wstaw lub ignoruj ​​postgres” Kod odpowiedzi

Wstaw lub ignoruj ​​postgres

INSERT INTO customers (NAME, email)
VALUES('Microsoft','[email protected]') 
ON CONFLICT ON CONSTRAINT customers_name_key 
DO NOTHING;
Code language: SQL (Structured Query Language) (sql)
Odd Orangutan

Wstaw lub ignoruj ​​postgres

INSERT INTO customers (name, email)
VALUES('Microsoft','[email protected]') 
ON CONFLICT (name) 
DO NOTHING;
Code language: SQL (Structured Query Language) (sql)
Odd Orangutan

Odpowiedzi podobne do “Wstaw lub ignoruj ​​postgres”

Pytania podobne do “Wstaw lub ignoruj ​​postgres”

Więcej pokrewnych odpowiedzi na “Wstaw lub ignoruj ​​postgres” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu