本人在数据库有三张表,然后本人想对这三张表的第一个字段进行条件查询,并返回指定的字段该怎么做?
解决方案
40
相似
select 指定字段 from taba join tabb on taba.id = tabb.id join tabc on tabb.id = tabc.id where taba.第一个字段 = 值 and tabb.第一个字段 = XXXX
select 指定字段 from taba join tabb on taba.id = tabb.id join tabc on tabb.id = tabc.id where taba.第一个字段 = 值 and tabb.第一个字段 = XXXX