gpt4 book ai didi

mysql - 从同一个表中检索数据,其中多列在多行中匹配

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

我有一个包含数据的表,在这种情况下,一行的 ID 变成另一行的引用 ID。表格如下。

enter image description here

我尝试如下检索数据,

select * from table1 t where t.id = t.reference_id

但它返回空表。

最佳答案

尝试像这样的自连接:

select * from table1 t1
inner join table1 t2 on t1.id = t2.reference_id

关于mysql - 从同一个表中检索数据,其中多列在多行中匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48495315/

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