如何在sql中创建UDF来确定一年中的月份?

发布于 2024-12-09 04:18:51 字数 105 浏览 1 评论 0原文

我想创建一个用户定义的函数来计算日期中的月份数。 但问题是我的月份编号为 1、2、3 ...,每个月有 26 天,这使得一年总共有 13 个月,而不是 12

有什么有用的帮助吗?

I want to make a user defined function for calculating the month number from date.
But the problem is that I have the months numbered as 1, 2, 3 ... and each month is of 26 days, that makes a total of 13 months in the year, rather than 12

any useful help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

檐上三寸雪 2024-12-16 04:18:51

我不会问你为什么要这样做。但我们开始吧:

select convert(int, (datepart(Dayofyear, @date)-1)/26.0)+1

I'm not going to ask you why you'd want to do this. But here we go:

select convert(int, (datepart(Dayofyear, @date)-1)/26.0)+1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文