Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我有一个数据表,我需要通过日期字段以“2013-09-26”格式获取本月创建的所有记录。
所以,在我的 where 子句中,我正在尝试以下内容:
DATE(unix_timestamp(orders.date_issued)) = 'between CURDATE() and CURDATE() - INTERVAL 1 MONTH'
所以这不起作用,我假设这是我在这里尝试的日期转换?我在日期转换上尝试了一些不同的变体,但似乎没有任何效果。
任何帮助将不胜感激!
这 where 条件将为您提供当月创建的记录
WHERE MONTH(orders.date_issued) = MONTH(current_date())