时间:2021-07-01 10:21:17 帮助过:2人阅读
回复内容
回复内容
贴出你的代码看看。
贴出你的代码看看。
你认为应该怎么写leftjoin后 然后怎么办?建议你把你写的代码贴出来,人家可以在你的基础上改。
文章表 a id title content cid 回复表b cid content
select a.title,a.content,b.content from a left join b a.cid=b.cid
仅供参考 没考虑任何 需求和优化
你可以查询两次
1.查询文章id=1的明细
select * from article where id=1
2.查询文章article_id=1的回复
select *from comment where article_id=1
大概是这么个意思,供参考
select a.title,a.content,b.content from a left join b on a.cid=b.cid
看红色部分
你可以查询两次
1.查询文章id=1的明细
select * from article where id=1
2.查询文章article_id=1的回复
select *from comment where article_id=1
大概是这么个意思,供参考
你可以查询两次
1.查询文章id=1的明细
select * from article where id=1
2.查询文章article_id=1的回复
select *from comment where article_id=1
大概是这么个意思,供参考