1select * from hockey_stats
2where game_date between '2012-03-11 00:00:00' and '2012-05-11 23:59:00'
3order by game_date desc;
1select * from users
2where signup_date between '2020-05-01' and '2020-12-10 23:59:59';
3// Important with the times,
4// otherwize you will not get all records from end date.
5// Event if you only have date and no times in signup_date column