SQL查询一个表中两个字段对应的另一个表的数据

2024-11-05 06:37:03
有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):

select a.* 瞎昌from a,b where a.id=b.id and 磨拿扒敏悉a.name=b.name