gpt4 book ai didi

mysql - 使用 SQL 查询将值从一个表插入到另一个表

转载 作者:太空宇宙 更新时间:2023-11-03 10:52:34 25 4
gpt4 key购买 nike

我正在尝试运行此 SQL 查询:

INSERT INTO controldata (field,value) 
VALUES (customer_billing_product_type,
SELECT name from customer_billing_product_types)

customer_billing_product_types 表中的所有行插入到 controldata 表中,字段始终为 customer_billing_product_type 但我收到 SQL 错误:

#1064 - You have an error in your SQL syntax; 
check the manual that corresponds to your MySQL server version for the right syntax to use near
'SELECT name from customer_billing_product_types)' at line 1

最佳答案

您编写的 INSERT 期望插入一条记录,但随后在 values 中返回了一整套记录。尝试将您的查询更改为

INSERT INTO controldata(field, value)
SELECT customer_billing_product_type, t.name FROM customer_billing_product_types t;

这将从 customer_billing_product_types 中选择所有 t.name 值,将 customer_billing_product_type 添加为列并将所有结果插入到 controldata.

关于mysql - 使用 SQL 查询将值从一个表插入到另一个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23382373/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com