选择mysql查询日期之间?

如何从mysql表中选择过去日期到当前日期的数据?例如,选择从2009年1月1日到当前日期?

我的“ datetime”列为datetime日期类型。请帮忙,谢谢

编辑:

如果说我想从2009年1月1日开始获得每天的数据,该如何编写查询?使用计数和函数之间?

回答:

select * from *table_name* where *datetime_column* between '01/01/2009' and curdate()

或使用>=<=

select * from *table_name* where *datetime_column* >= '01/01/2009' and *datetime_column* <= curdate()

以上是 选择mysql查询日期之间? 的全部内容, 来源链接: utcz.com/qa/397562.html

回到顶部