关于sql中日期相关跨年处理

 

关于sql数据库里日期的跨年处理:

读取本周和上周纪录时,涉及跨年数据要特殊处理:

数据库里周数保存 1-52周。

按照sql函数取得周数时会出现53的问题。

写入数据库时要处理州周为53的情况,

week=53   则当作下1年处理

nian=nian+1
week=1

 

本周:

 SET DATEFIRST 1 -- 设置周一为一周的第一天
 declare @week_year int
 set @week_year = year(getdate())
 declare @week smallint -- 第几周
 select @week = datepart(week,getdate())
 
 if(@week=53)
 begin
  set @week_year=@week_year+1
  set @week=1
 end

上周:

 SET DATEFIRST 1 -- 设置周一为一周的第一天

 declare @last_week_year int

 set @last_week_year = year(getdate())

 declare @last_week smallint -- 第几周

 select @last_week = datepart(week,getdate())
 
 if(@last_week=1)
  begin
   set @last_week_year=@last_week_year-1
   set @last_week=52
  end
 else
  begin
   set @last_week=@last_week-1
  end

上上周:

 SET DATEFIRST 1 -- 设置周一为一周的第一天

 declare @last_last_week_year int

 set @last_last_week_year = year(getdate())

 declare @last_last_week smallint -- 第几周

 select @last_last_week = datepart(week,getdate())
 
 if(@last_last_week=1)
  begin
   set @last_last_week_year=@last_last_week_year-1
   set @last_last_week=51
  end
 else if(@last_last_week=2)
  begin
   set @last_last_week_year=@last_last_week_year-1
   set @last_last_week=52
  end
 else
  begin
   set @last_last_week=@last_last_week-2
  end

 

 

本月:

 declare @today_year int
 declare @today_month int

 set @today_year = year(getdate())
 set @today_month = month(getdate())

 

 

上月:

 

 declare @last_month_year int
 declare @last_month int
 set @last_month_year = year(getdate())
 set @last_month = month(getdate())
 
 if (@last_month = 1)
  begin
    set @last_month = 12
    set @last_month_year =@last_month_year -1
  end 
 else if (@last_month != 1)
  begin
   set @last_month = @last_month-1
  end
 

时间: 2024-10-03 15:01:48

关于sql中日期相关跨年处理的相关文章

oracle-jdbc执行sql中日期参数问题

问题描述 jdbc执行sql中日期参数问题 select 1 from dual where sysdate='2013-01-01';这样一个sql语句,在jdbc中可以正确执行,在pl/sql中确报错:"ORA-01861: literal does not match format string",select 1 from dual where sysdate='01-1月-2013'在pl/sql中可以正常执行,求教大神,jdbc会改变我的sql语句吗?jdbc是怎么执行sq

SQL Server 日期相关资料详细介绍_MsSql

一.日期类型: 对于SQL Server 2008 来说(因为2000甚至2005已经稍微有被淘汰的迹象,所以在此不作过多说明,加上自己工作使用的是2008R2.所以不保证08以前的能用),日期类型有: 数据类型 格式 范围 精确度 存储大小(以字节为单位) 用户定义的秒的小数精度 时区偏移量 time   hh:mm:ss[. nnnnnnn] 00:00:00.0000000 到 23:59:59.9999999 100 纳秒 3 到 5 是 否 date   YYYY-MM-DD 0001

SQL Server 日期相关资料详细介绍

一.日期类型: 对于SQL Server 2008 来说(因为2000甚至2005已经稍微有被淘汰的迹象,所以在此不作过多说明,加上自己工作使用的是2008R2.所以不保证08以前的能用),日期类型有: 数据类型 格式 范围 精确度 存储大小(以字节为单位) 用户定义的秒的小数精度 时区偏移量 time hh:mm:ss[. nnnnnnn] 00:00:00.0000000 到 23:59:59.9999999 100 纳秒 3 到 5 是 否 date YYYY-MM-DD 0001-01-

sql中日期日期周末月末函数

 代码如下 复制代码 select Dateadd(wk,datediff(wk,0,getdate()),0) --周一                             select Dateadd(wk,datediff(wk,0,getdate()),6) --周日 select Dateadd(mm,datediff(mm,0,getdate()),0) --月初 select Dateadd(ms,-3,dateadd(mm,datediff(m,0,getdate())+1,

Spark SQL中的DataFrame

在2014年7月1日的 Spark Summit 上,Databricks 宣布终止对 Shark 的开发,将重点放到 Spark SQL 上.在会议上,Databricks 表示,Shark 更多是对 Hive 的改造,替换了 Hive 的物理执行引擎,因此会有一个很快的速度.然而,不容忽视的是,Shark 继承了大量的 Hive 代码,因此给优化和维护带来了大量的麻烦.随着性能优化和先进分析整合的进一步加深,基于 MapReduce 设计的部分无疑成为了整个项目的瓶颈. 详细内容请参看 Sh

sql中的日期计算 网上搜集

提到SQL中的日期函数与时间函数就不得不说出以下两个概念:确定性函数与非确定性函数. 确定性函数:即获得的值是在一组既定的值中,或者是可以料想到的值.非确定性函数:即无法准确获知其结果. 下面将日期函数与时间函数按上面提到的这两种类型进行分类说明: 1 . 确定性函数:[1] DateAdd()作用:在指定的日期加上一段时间的基础上,返回新的DateTime 语法:DateAdd(datepart, number, date) 参数:datepart是规定应向日期的哪一部分返回新值的参数.下表列

oracle中sql汇总查询相关的问题

问题描述 oracle中sql汇总查询相关的问题 怎么通过一条sql查询出如下表中的所有记录数和交易成功记录数,其中status是交易状态(交易状态 [0:未付款;1:交易关闭;2:已付款;3:交易完成(含退款);4:交易成功;5:交易失败(担保交易)]6.支付中), 表结构如下: 解决方案 http://www.oschina.net/question/2257111_177653 解决方案二: select count(1) as zongshu,'总数' as leixing from a

JavaScript中日期函数的相关操作知识_javascript技巧

时间对象是一个我们经常要用到的对象,无论是做时间输出.时间判断等操作时都与这个对象离不开.除开JavaScript中的时间对象外,在VbScript中也有许多的时间对象,而且非常好用.下面还是按照我们的流程来进行讲解JavaScript中日期函数. new Date() new Date(milliseconds) new Date(datestring) new Date(year, month) new Date(year, month, day) new Date(year, month,

数据库表中日期记录为2009-04-23的形式,如何用sql语句查询2009年4月份的所有记录,请帮帮我!!谢谢!!

问题描述 数据库表中日期记录为2009-04-23的形式,如何用sql语句查询2009年4月份的所有记录,请帮帮我!!谢谢!! 解决方案 解决方案二:补充一句我需要HQL语句解决方案三:fromClasswheredatebetweendate'2009-04-01'anddate'2009-04-30'解决方案四:引用2楼endlesspass的回复: fromClasswheredatebetweendate'2009-04-01'anddate'2009-04-30' 就只有这一种思路了吗