過去 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
select curdate() - この形式で日付が表示されます 2012-11-08