You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there!
It would be nice to use RETURNING clause in the queries like that:
INSERT INTO t (city, name) VALUES ('Santa Monica', 'Igor') RETURNING id;
UPDATE t SET city = 'New York' WHERE name = 'Chris' RETURNING id;
DELETE FROM t WHERE city = 'Abu Dhabi' RETURNING id;