我对SQL有疑问。伪代码如下:
Select ids
from table_1
where id exists for last seven days
在表格中包括以下实体:ID,recieveddate,name
我想用SQL
来解决这个问题答案 0 :(得分:0)
我对语法并不是100%肯定,但在看完this documentation:之后我会冒险回答
SELECT id from your_table where receiveddate>=Date_Sub(curdate(),interval 7 DAY)
答案 1 :(得分:0)
SELECT id from table_1 where receiveddate <= date_sub(sysdate(),interval 7 DAY);