Answers for "how to find rows week wise date timestamp sql"

SQL
0

this week mysql

SELECT *
FROM   your_table
WHERE  YEARWEEK(`date`, 1) = YEARWEEK(CURDATE(), 1)
Posted by: Guest on December-30-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language