sql server:自定義計算固定工作日,雙休日函數

本文涉及的产品
云数据库 RDS SQL Server,基础系列 2核4GB
RDS SQL Server Serverless,2-4RCU 50GB 3个月
推荐场景:
简介: ---sql server declare @date datetime set @date='2012-02-03'--getdate() --本月第一天 SELECT DATEADD(mm, DATEDIFF(mm,0,@date), 0) --本月最后一天 SELECT dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,@date)+1, 0
---sql server 
declare @date datetime
set @date='2012-02-03'--getdate()
--本月第一天
SELECT DATEADD(mm, DATEDIFF(mm,0,@date), 0)
--本月最后一天
SELECT dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,@date)+1, 0))


---有個月多少天函數
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GetAMonthHowNumber]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[GetAMonthHowNumber]
GO
CREATE   function  GetAMonthHowNumber
(  
	@date datetime
)
returns int
as
begin
	declare @int int
	select @int=datediff(dd , @date , dateadd(mm, 1, @date))
	return @int
end
GO

--
select [dbo].[GetAMonthHowNumber] (getdate()) AS '月天數'


---計算當月周六,周日有多少天
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GetAMonthStatSunNumber]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[GetAMonthStatSunNumber]
GO
CREATE   function  GetAMonthStatSunNumber
(  
	@date datetime
)
returns int
as
begin
declare @Sdate datetime ,@Edate datetime

SELECT @Sdate=DATEADD(mm, DATEDIFF(mm,0,@date), 0)
SELECT @Edate=dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,@date)+1, 0))
--set @Sdate='2013-05-01'
--set @Edate='2013-05-31'
declare @aa table (strdate datetime)  
declare @i int  
set @i=datediff(day,@Sdate,@Edate)  
while(@i>=0)  
begin  
insert @aa  values (dateadd(day,@i,@Sdate))  
set @i=@i-1  
end  
select @i= count(*)  from @aa where   datepart(weekday,strdate) in (1,7)  --not in (1,7)
return @i
end
go

--
select [dbo].[GetAMonthStatSunNumber] (getdate()) AS '雙休日天數'



--計算當月除周六,周日有多少天,也是有多少工作日
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GetAMonthWorkDayNumber]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[GetAMonthWorkDayNumber]
GO
CREATE   function  GetAMonthWorkDayNumber
(  
	@date datetime
)
returns int
as
begin
declare @Sdate datetime ,@Edate datetime

SELECT @Sdate=DATEADD(mm, DATEDIFF(mm,0,@date), 0)
SELECT @Edate=dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,@date)+1, 0))
--set @Sdate='2013-05-01'
--set @Edate='2013-05-31'
declare @aa table (strdate datetime)  
declare @i int  
set @i=datediff(day,@Sdate,@Edate)  
while(@i>=0)  
begin  
insert @aa  values (dateadd(day,@i,@Sdate))  
set @i=@i-1  
end  
select @i= count(*)  from @aa where   datepart(weekday,strdate) not in (1,7)  --not in (1,7)
return @i
end
go

---
select [dbo].[GetAMonthWorkDayNumber] (getdate()) as '工作日天數'

相关实践学习
使用SQL语句管理索引
本次实验主要介绍如何在RDS-SQLServer数据库中,使用SQL语句管理索引。
SQL Server on Linux入门教程
SQL Server数据库一直只提供Windows下的版本。2016年微软宣布推出可运行在Linux系统下的SQL Server数据库,该版本目前还是早期预览版本。本课程主要介绍SQLServer On Linux的基本知识。 相关的阿里云产品:云数据库RDS SQL Server版 RDS SQL Server不仅拥有高可用架构和任意时间点的数据恢复功能,强力支撑各种企业应用,同时也包含了微软的License费用,减少额外支出。 了解产品详情: https://www.aliyun.com/product/rds/sqlserver
目录
相关文章
|
12天前
|
SQL 缓存 Java
【详细实用のMyBatis教程】获取参数值和结果的各种情况、自定义映射、动态SQL、多级缓存、逆向工程、分页插件
本文详细介绍了MyBatis的各种常见用法MyBatis多级缓存、逆向工程、分页插件 包括获取参数值和结果的各种情况、自定义映射resultMap、动态SQL
【详细实用のMyBatis教程】获取参数值和结果的各种情况、自定义映射、动态SQL、多级缓存、逆向工程、分页插件
|
22天前
|
SQL 数据库 开发者
功能发布-自定义SQL查询
本期主要为大家介绍ClkLog九月上线的新功能-自定义SQL查询。
|
30天前
|
SQL Oracle 关系型数据库
SQL优化-使用联合索引和函数索引
在一次例行巡检中,发现一条使用 `to_char` 函数将日期转换为字符串的 SQL 语句 CPU 利用率很高。为了优化该语句,首先分析了 where 条件中各列的选择性,并创建了不同类型的索引,包括普通索引、函数索引和虚拟列索引。通过对比不同索引的执行计划,最终确定了使用复合索引(包含函数表达式)能够显著降低查询成本,提高执行效率。
|
1月前
|
SQL 数据库 数据库管理
数据库SQL函数应用技巧与方法
在数据库管理中,SQL函数是处理和分析数据的强大工具
|
1月前
|
SQL 数据库 索引
SQL中COUNT函数结合条件使用的技巧与方法
在SQL查询中,COUNT函数是一个非常常用的聚合函数,用于计算表中满足特定条件的记录数
|
1月前
|
SQL 存储 缓存
SQL计算班级语文平均分:详细步骤与技巧
在数据库管理和分析中,经常需要计算某个班级在特定科目上的平均分
|
2月前
|
SQL 存储 并行计算
Lindorm Ganos 一条 SQL 计算轨迹
Lindorm Ganos 针对轨迹距离计算场景提供了内置函数 ST_Length_Rows,结合原生时空二级索引和时空聚合计算下推技术,能够高效过滤数据并并行执行运算任务。该方案通过主键索引和时空索引快速过滤数据,并利用多Region并行计算轨迹点距离,适用于车联网等场景。具体步骤包括根据车辆识别代码和时间戳过滤数据、范围过滤轨迹点以及并行计算距离。使用限制包括只支持点类型列聚合运算及表中轨迹点需按顺序排列等。测试结果显示,Lindorm Ganos 在不同数据量下均能实现秒级响应。
27 3
|
1月前
|
SQL 关系型数据库 MySQL
SQL日期函数
SQL日期函数
|
2月前
|
SQL 关系型数据库 C语言
PostgreSQL SQL扩展 ---- C语言函数(三)
可以用C(或者与C兼容,比如C++)语言编写用户自定义函数(User-defined functions)。这些函数被编译到动态可加载目标文件(也称为共享库)中并被守护进程加载到服务中。“C语言函数”与“内部函数”的区别就在于动态加载这个特性,二者的实际编码约定本质上是相同的(因此,标准的内部函数库为用户自定义C语言函数提供了丰富的示例代码)
|
3月前
|
SQL 数据处理 数据库