반응형
https://stackoverflow.com/questions/2944297/postgresql-function-for-last-inserted-id
INSERT INTO persons (lastname,firstname) VALUES ('Smith', 'John');
SELECT currval('persons_id_seq')
INSERT INTO persons (lastname,firstname) VALUES ('Smith', 'John');
SELECT currval(pg_get_serial_sequence('persons','id'));
'프로그래밍' 카테고리의 다른 글
wsl2 고정 ip처럼 사용하기 (0) | 2022.12.06 |
---|---|
docker network mode (0) | 2022.12.06 |
이번에 작업한 도커파일 (0) | 2022.11.28 |
golang docker 말기 (0) | 2022.11.24 |
golang 공유 자원 사용하기 (0) | 2022.11.03 |