我有一个CSV文件,其中有两列:城市和邮政编码。我想使用copy命令将该文件复制到Postgresql表中,同时自动生成id值。
该表具有以下列:id,city和zipcode。
我的CSV文件只有:城市和邮政编码。
如果你的表使用了一个串行列,那么
COPY command就应该这样做:
If there are any columns in the table that are not in the column list,COPY FROM will insert the default values for those columns.
所以你应该可以说:
copy table_name(city,zipcode) from ...
并且id将像往常一样生成。如果您没有ID(或手动附加序列)的串行列,则可以手动连接序列,然后复制,然后分离序列。