3個表join
用戶注冊表[userid]文章表[article]文章評論表[bbs]
網(wǎng)站使用步驟:
用戶注冊入 [userid]表 用戶名字段 userid].username
用戶登錄發(fā)布文章 username值入[article]的article.fabuer字段
文章評論表[bbs]中有bbs.aId字段記錄[article]的article.ID
請問:我如何在[bbs]表中用SQL語句直接列出[userid]所在的城市字段userid.city
我用join語句只能列出[article]的某個字段;
----------------------------------------------
直接寫成下面的語句。
select bbs.aId,article.Id,userid.city from bbs,article,userid where bbs.aid=article.Id and article.fabuer=userid.username
【 微信掃一掃 】