「PostgreSQL入門」RETURNINGリストの構文をするサンプル
サンプルコード:
INSERT INTO student (stuid, address,phone,memo) VALUES (nextval('student_id_seq’), 'tokyo’,’xxx’,’this is memo’)
RETURNING stuid;
Coding Changes the World
サンプルコード:
INSERT INTO student (stuid, address,phone,memo) VALUES (nextval('student_id_seq’), 'tokyo’,’xxx’,’this is memo’)
RETURNING stuid;