gpt4 book ai didi

mysql - 从mysql表中获取特定行与另一个表值进行比较

转载 作者:行者123 更新时间:2023-11-29 12:43:23 26 4
gpt4 key购买 nike

我需要一些关于 mysql 查询的帮助。

我有两个表,如下所示

表1

ID NAME    ADDRESS
1 test testing address
2 test1 testing address
3 test2 testing address

表2

ID  user_id    date
1 2 123456789

我的查询是

SELECT * FROM table1,table2 on table1.ID = table2.user_id where table2.date != 123456789 

但这行不通。

我需要 table1 中没有 ID 2 的数据,如下输出

ID name address
1 test1 testing address
3 test3 testing address

最佳答案

检查你的语法

 SELECT * FROM table1 t1 
INNER JOIN table2 t2 on t1.ID = t2.user_id where t2.date != '123456789'

关于mysql - 从mysql表中获取特定行与另一个表值进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25792903/

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