mysql date 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: mysql date of the week
DAYOFWEEK(date)
select id from tbname
where date between date_sub(now(),INTERVAL 1 WEEK) and now();
DAYOFWEEK(date)