首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

大哥大姐们帮帮忙(待中)

2012-03-28 
大哥大姐们帮帮忙(在线等待中)我有两个表.表1里记录的是,文章标题,id分类.这些表2里记录的是文章内容.现在

大哥大姐们帮帮忙(在线等待中)
我有两个表.表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=你的分类号

热点排行