我想拉在过去7天的记录。 这是我的,我一直在试图去工作的SELECT语句:
select from_unixtime(time,'%m/%d/%y') as fdate, from_unixtime(time,'%h:%m:%s') as ftime
from mdl_log
where from_unixtime(time,'%y-%m-%d') between curdate() and curdate() - INTERVAL 7 DAY
我曾尝试在where子句中的各种化身像
where time between curdate() and curdate() - INTERVAL 7 DAY
和
where from_unixtime(time,'%yyyy-%mm-%dd') between curdate() and curdate() - INTERVAL 7 DAY
和
where date(time) between curdate() and curdate() - INTERVAL 7 DAY
以这种格式在2012年11月8日的日期显示结果 - 选择CURDATE()