您的位置:首页技术文章
文章详情页

SQL Server 某些条件下求某日的日期

【字号: 日期:2023-10-29 14:09:56浏览:22作者:猪猪

/*需要得结果: 某一天的日期已知条件: 这天的年,月,星期几,在这个月中处于第几周

举例说明:; 希望求出2004-11-22已知条件: 2004年,; 11 月,; 星期一 ,这天在11月是第四周

declare @year numeric(4),@month numeric(2),@weekday varchar(6),@week numeric(1)set @year=2004set @month=11set @weekday='星期一'set @week=4*/

alter function RequestDate (@year numeric(4),@month numeric(2),@weekday varchar(6),

标签: Sql Server 数据库