如何将数据插入postgres中特定的新创建列?

时间:2014-07-30 04:58:38

标签: postgresql

我在现有表中创建了一个新列。如何在postgres中将数据插入到特定的新创建列?

1 个答案:

答案 0 :(得分:0)

使用returning

create table t(id serial, a int, b int);
insert into t(a,b) (1,2) returning id;