如何在 SQL 中选择一个月的第一天?

How can I select the first day of a month in SQL?(如何在 SQL 中选择一个月的第一天?)
本文介绍了如何在 SQL 中选择一个月的第一天?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只需要选择给定 DateTime 变量的月份的第一天.

I just need to select the first day of the month of a given DateTime variable.

我知道使用这种代码很容易做到:

I know it's quite easy to do using this kind of code:

select CAST(CAST(YEAR(@mydate) AS VARCHAR(4)) 
+ '/' + CAST(MONTH(@mydate) AS VARCHAR(2)) + '/01' AS DATETIME)

但不幸的是,这不是很优雅,也不是很快.

But unfortunately, this is not very elegant, and not very fast either.

有没有更好的方法来做到这一点?我使用的是 SQL Server 2008.

Is there a better way to do this? I'm using SQL Server 2008.

推荐答案

除了以上所有答案,还有一种基于 sql 2012

In addition to all the above answer, a way based on a function introduced in sql 2012

SELECT DATEFROMPARTS(YEAR(@mydate),MONTH(@mydate),1)

这篇关于如何在 SQL 中选择一个月的第一天?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)