时间:2021-07-01 10:21:17 帮助过:14人阅读
aid, title,content
-----------------------------------------
1 Qt助力跨平台应用开发,势不可挡
2 Qt助力跨平台应用开发,势不可挡
3 Qt助力跨平台应用开发,势不可挡
4 Qt助力跨平台应用开发,势不可挡
tid,tname
--------------------------------
1 生活
2 技术
3 科技
4 娱乐
aid,tid
----------------------------
1 1
1 2
1 3
2 1
2 3
2 4
3 1
3 2
3 4
4 1
4 2
select * from article where aid in(select aid from art_tags where tid in(select tid from tags where tname='技术'));
select a.* from article a
left join art_tags b on a.aid=b.aid
left join tags c on c.tid=b.tid where b.tname='技术'