SQL查询一个表中两个字段对应的另一个表的数据,应该怎么操作?

2024-11-07 08:28:29
推荐回答(2个)
回答1:

根据 NEWS表中的 news_type_id = 1 查出 news_type表中的 “透明点评” 这条数据,“透明点评”是最后需要查出来的位置数据。

子查询或者表连接

比如表连接的方式就可以写成:
select n.id,t.type_name,title from news as n inner join news_type as t onnn.news_type_id=t.type_id;

只查“透明点评”的数据子查询可以写成:
select * from news where news_type_id=(select type_id from news_type where type_name='透明点评');

回答2:

SQL查询一个表中两个字段对应的另一个表的数据,可以通过如下操作进行:输入语句:select a.* from test a,test1 b where a.id=b.id and a.name=b.name;

提示:两表连接where条件要写上关联条件,因为提问是两个字段完全相等,所以就写作:a.id=b.id and a.name=b.name。