sql get last week code example
Example 1: sql select data from last week
select id from tbname
where date between date_sub(now(),INTERVAL 1 WEEK) and now();
Example 2: sql last week
select min(date), max(date)
from calendar
where week = datepart(week, getdate() - 7)
and year = datepart(year, getdate() - 7)
Example 3: date sql get the last week count
select * from dt_table where `date` >= DATE_SUB(CURDATE(), INTERVAL 7 DAY)