Answers for "how to count last week data in sql"

SQL
0

date sql get the last week count

select * from dt_table where  `date` >= DATE_SUB(CURDATE(), INTERVAL 7 DAY)
Posted by: Guest on October-26-2020

Code answers related to "how to count last week data in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language