sql根据第一张表的字段查询到第二张表,再根据第二张表的字段查询到第三张表。

2025-01-06 11:19:02
推荐回答(1个)
回答1:

select * from table3 where field3 = (select field2 from table2 where field2 = (select filed1 from table1 where filed1 = '你的查询条件'))

 如果查询出的结果集不是唯一的话,把 = 换位 in 查询就行了