给定一天,查找当前月份的第一个第二个时间戳
Posted
技术标签:
【中文标题】给定一天,查找当前月份的第一个第二个时间戳【英文标题】:Find the first second timestamp of current month given a day 【发布时间】:2017-02-07 09:04:13 【问题描述】:我有一个日期格式,例如'2016-09-21'
。我想要实现的是在那天找到当月(当年)第一天的第一秒。
我想这样做是因为有一个DATETIME
格式的 mysql 列。所以我想SELECT
当月的所有记录。
【问题讨论】:
看这里:***.com/questions/5541326/… 【参考方案1】:可以使用SQL获取当月的所有记录:
select * from your_table
where year(curdate()) = year(datecolumn)
and month(curdate()) = month(datecolumn)
发件人:mysql query to select all rows of current month?
【讨论】:
以上是关于给定一天,查找当前月份的第一个第二个时间戳的主要内容,如果未能解决你的问题,请参考以下文章
请教大师,MYSQL如何根据UNIX时间戳,判定一周范伟内的数据
努力从 BigQuery SQL 中的时间戳字段中提取特定月份的 DATE