我有此查询,该查询显示了其他表中没有的ID
select * from qwe where id not in (select id from ewq)
但是我想在其中添加更多查询,该查询将仅选择当前日期-(减去)距当前日期Sample output of the query on top的1天 我已经尝试过这样的查询
select *
from qwe
where id
and date(in_time) >= Curdate() - INTERVAL 1 DAY not in (select id from ewq)
但是输出也一样。
答案 0 :(得分:1)
请尝试以下查询-
SELECT *
FROM qwe
WHERE id NOT IN(SELECT id FROM ewq)
AND DATE(in_time) >= CURDATE() - INTERVAL 1 DAY