Is there a way I can create a view with last 7 days formated as DATE in mysql?
I have a query that I can use in where clause:
DATE_SUB( NOW(), INTERVAL 7 DAY )
but I can use it to create a standalone table.
Is there a way I can create a view with last 7 days formated as DATE in mysql?
I have a query that I can use in where clause:
DATE_SUB( NOW(), INTERVAL 7 DAY )
but I can use it to create a standalone table.