mysql one week ago code example

Example 1: mysql where one year ago

select * 
from orders 
where order_date >= DATE_SUB(NOW(),INTERVAL 1 YEAR);

Example 2: mysql one week ago

select id from tbname

where date between date_sub(now(),INTERVAL 1 WEEK) and now();

Example 3: mysql one week ago

SELECT sysdate() - 7; 				-- 1 week ago   12/01/2021 14:27:27
SELECT date(sysdate() - 7); 		-- 1 week ago   12/01/2021 00:00:00

SELECT * FROM my_table WHERE my_datecol > date(sysdate() - 7);

Example 4: mysql get day of week

DAYOFWEEK();//(1 for Sunday,2 for Monday …… 7 for Saturday )

Example 5: mysql date of the week

DAYOFWEEK(date)

Tags:

Misc Example