将数据复制到另一个 SQL 表中不同名称的列中
我想将数据从一个表复制到另一个表中,其中的列具有不同的名称,并且我尝试使用以下内容,
SELECT `content` AS `name`, `id` AS `orig_id`
INTO `songs`
FROM `items`
WHERE `categories` LIKE "%30%"
但它不起作用。我应该如何实现这一目标?
I want to copy data from one table into another table where the columns have different names, and am trying to use the following
SELECT `content` AS `name`, `id` AS `orig_id`
INTO `songs`
FROM `items`
WHERE `categories` LIKE "%30%"
It doesn't work. How should I go about achieving this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将目标表的列指定为 INSERT 语法的一部分,如下所示。
You can specify the columns of the destination table as part of the INSERT syntax as shown below.
SELECT INTO
是 T-SQL 语法。对于 MySQL,您可以使用:
SELECT INTO
is T-SQL syntax.For MySQL you'd use:
对于 SQL :
For SQL :