hi there, hope in your help.
I need to extract from my table:
- all the rows of the previous day;
- all the rows of the current day until 6 o'clock in the morning;
I tried this query but the output is null, I have two rows with previous day.
Can you help me?
thank you.
Code:SELECT * FROM mytable WHERE myDate BETWEEN DATE_SUB( CURRENT_DATE (), INTERVAL 1 DAY ) AND ( CURRENT_DATE () AND myHour < '06:00' );



Reply With Quote






Bookmarks