gpt4 book ai didi

mysql - 将多个数据值插入mysql表中的字段

转载 作者:行者123 更新时间:2023-11-30 22:47:56 24 4
gpt4 key购买 nike

我有一个包含列的表格

merchant_id | phone
1 | 879182782
2 | 324239324

现在我想要的是为电话字段插入多个值的查询

merchant_id | phone
1 | 879182782,989838273
2 | 324239324,849238420,349289393

任何人都可以帮我查询示例吗?我尝试了更新,但无法正常工作

最佳答案

我同意 Gordon 的观点,但无论如何你都可以使用“CONCAT”,这里有一个例子:

create table tabla(
merchant_id int AUTO_INCREMENT PRIMARY KEY,
phone text
);

insert into tabla(merchant_id,phone)
VALUES (1,'809-541-8935');

insert into tabla(merchant_id,phone)
VALUES (2,'809-541-8935');

insert into tabla(merchant_id,phone)
VALUES (3,'809-541-8935');

UPDATE tabla
SET phone = concat(phone, ',809-537-7791')
where merchant_id = 1

DEMO

关于mysql - 将多个数据值插入mysql表中的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29030708/

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