データ変更をお勧めしますCTE (Postgres 9.1以降):
WITH ins AS (
INSERT INTO tbl1(item, usr)
VALUES('this item', 'the user')
RETURNING usr
)
SELECT t2.*
FROM ins
JOIN tbl2 t2 USING (usr)
列名usr
の操作 user
の代わりに 、これは予約語です。
データ変更をお勧めしますCTE (Postgres 9.1以降):
WITH ins AS (
INSERT INTO tbl1(item, usr)
VALUES('this item', 'the user')
RETURNING usr
)
SELECT t2.*
FROM ins
JOIN tbl2 t2 USING (usr)
列名usr
の操作 user
の代わりに 、これは予約語です。