【发布时间】:2014-02-27 05:41:50
【问题描述】:
这是我的表格结构。
Table1 // it has 4 colums,that saves all the question posted by user
id|question|answer|postby|
Table2 //it has 2 colums, that saves all the signed up users
id|username|email|
Table3 //it saves that which question is read by which user.
id|reader_id|question_id|
注意:reader_id 是表 2 的 id。
问题:我们需要找出特定用户没有阅读的问题。
【问题讨论】:
标签: php mysql sql codeigniter join