gpt4 book ai didi

php - 这个 mysql 查询出了什么问题?

转载 作者:行者123 更新时间:2023-11-29 21:48:10 25 4
gpt4 key购买 nike

我试图将行插入到名为 subject 的表中,我编写了以下查询,以便不会出现重复项。但这不起作用。

INSERT INTO subjects ( stu_id, sub_id ) VALUES (16, 39) 
WHERE NOT EXISTS ( SELECT * FROM subjects WHERE stu_id = 16 AND sub_id = 39 );

最佳答案

INSERT IGNORE INTO subjects ( stu_id, sub_id ) VALUES (16, 39) 

如果唯一键中存在具有这种数据组合的所有行,这将忽略数据。

关于php - 这个 mysql 查询出了什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33915225/

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