postgresql 使用选择查询进行多重插入
我需要对多行执行插入查询,其中第一列是数字且相同的值,第二个值是从另一个表查询的。
类似于
insert into table (33, select col2 from another_table);
这可以通过一条语句来完成吗?
i need to perform a insert query for multiple rows whereby the first column is a numeric and identical value and the second values are queried from another table.
something like
insert into table (33, select col2 from another_table);
can this be accomplished with a single statement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样
like this
如果要在插入查询中指定列,应使用以下语法:
If you want to specify columns in your insert query, you should use this syntax: