我有一个类似'2016-09-21'的日期格式。我要达到的目标是在当天找到当前月份(本年度)的第一天的第一秒。

我想这样做是因为有一个DATETIME格式的MySQL列。所以我想SELECT当月的所有记录。

最佳答案

您可以使用SQL获取当月的所有记录:

select * from your_table
where year(curdate()) = year(datecolumn)
and month(curdate()) = month(datecolumn)


来自:mysql query to select all rows of current month?

关于php - 查找给定一天的当前月份的第一秒时间戳,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39763499/

10-13 00:11