在全体小组的ID中过滤掉签到表中的ID,得到的就是未签到的ID
一个子查询过滤,相信你能看懂
SELECT id
FROM 全体表
WHERE id NOT IN(
SELECT id FROM 签到表
)
select s.*,l.* from sign_score s,sign_log l where s.uid=l.uid order by s.score,l.create_time欢迎分享,转载请注明来源:内存溢出
在全体小组的ID中过滤掉签到表中的ID,得到的就是未签到的ID
一个子查询过滤,相信你能看懂
SELECT id
FROM 全体表
WHERE id NOT IN(
SELECT id FROM 签到表
)
select s.*,l.* from sign_score s,sign_log l where s.uid=l.uid order by s.score,l.create_time欢迎分享,转载请注明来源:内存溢出
评论列表(0条)