MYSQL Datetime获取一个月前的日期提取
当前日期为 2011/12/05
..,如何获取一个月前的日期提取? 2011/11/05
?在MYSQL中?
having a current date as 2011/12/05
.. , how to get a date extract one month back ? 2011/11/05
? in MYsql?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过向 WHERE 添加条件来做到这一点:
You can do this by adding condition to the WHERE:
有关更多信息:Date-Arithmetic-With-MySQL
FOR MORE INFO: Date-Arithmetic-With-MySQL
也可以使用。
如果您要查找上个月创建的所有内容,
You also can use
if you're looking for everything created in the last month.