大哥大姐们帮帮忙(在线等待中)
我有两个表.表1里记录的是,文章标题 ,id 分类.这些
表2里记录的是文章内容.
现在是要通过表1中的文章ID读出相对应表2里的文章内容.
附
表1里的项. id 自动编号 lbid 分类 bt 标题 表名:news
表2里的项. id 内容自动编号 news_id 相对表1中标题的自动编号. nr (文章内容) 表名 news_nr
------解决方案--------------------select a.*,b.* from news as a,news_nr as b where a.id=b.news_id
------解决方案--------------------select a.*,b.* from news a,news_nr b where a.id=b.news_id and id=你传过来的文章id
不过没明白你为什么这么设计表呢
------解决方案--------------------select news.*,news_nr.nr from news inner join news_nr on news.id=news_nr.news_id where news.lbid=你的分类号