gpt4 book ai didi

php - 从两个表中返回相同的值

转载 作者:行者123 更新时间:2023-11-29 06:23:59 25 4
gpt4 key购买 nike

我有两个表,我想获取包含相同字段值的相同行。示例:

表1结构:

ID| CAPTION | TEAM
0| Example | hi

表2结构:

ID|  TEAM  | SELF
0| Eam2 | hi

所以我想在一个查询中返回所有包含相同的 TEAMSELF 字段的行。在这种情况下,我正在等待这个结果:

0 - Example - hi

我怎样才能做到这一点? sql语句是什么?

可能的解决方案:

select *
from teams t1
where exists (select 1 from table players t2
where t2.id = t1.id
and t2.self = t1.players)

#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 'table players t2 where t2.id = t1.id and t2.self' at line 3

最佳答案

试试下面这个你可能会得到你的输出。

select * 
from table1 t1, table2 t2
where t1.id = t2.id and a.team = b.self;

谢谢。

关于php - 从两个表中返回相同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32066522/

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