我有两张桌子。表I和表II包含消息,其中包含用户名id和消息ID。在看到表II中记录的消息后,我做了每个用户。如果用户尚未阅读我想要通知的消息。什么是最快捷,最有效的方式?
tbl_msg
id title msg user_id ucid all
1 msg1 text * *
2 msg2 text
tbl_msg_log
id user_id msg_id
1 2 2
2 1 2
我知道使用foreach太旧了。那么如何加入两个表并检查表msg日志中是否不存在user_id和msg_id?
更新1
我用过这个sql而不是工作:
$get_msg_notifiction = $pdo->query("SELECT * FROM `tbl_msg` WHERE (`user_id`='$user[id]' OR `ucid`='$user[group_id]' OR `all`='1') AND NOT EXISTS (SELECT id FROM tbl_msg_log WHERE tbl_msg.id = tbl_msg_log.msg_id AND tbl_msg_log.user_id = $user[id])");
返回:
Fatal error: Call to a member function execute()
答案 0 :(得分:0)
使用NOT EXISTS:
select * from tbl_msg
where not exists (select 1 from tbl_msg_log
where tbl_msg.id = tbl_msg_log.msg_id)
如果你真的必须加入:
select tbl_msg.*
from tbl_msg left join tbl_msg_log
on tbl_msg.id = tbl_msg_log.msg_id
where tbl_msg_log.msg_id is null
答案 1 :(得分:0)
列出了尚未阅读的消息
SELECT tbl_msg.*
FROM tbl_msg_log
LEFT JOIN tbl_msg
ON tbl_msg_log.msg_id=tbl_msg.id
WHERE tbl_msg.id IS NULL