📜  日期范围之间的 mysql - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:36.497000             🧑  作者: Mango

代码示例5
select * from users 
where signup_date between '2020-05-01' and '2020-12-10 23:59:59';
// Important with the times, 
// otherwize you will not get all records from end date.
// Event if you only have date and no times in signup_date column