标签: postgresql
我在现有表中创建了一个新列。如何在postgres中将数据插入到特定的新创建列?
答案 0 :(得分:0)
使用returning。
returning
create table t(id serial, a int, b int); insert into t(a,b) (1,2) returning id;