zoukankan      html  css  js  c++  java
  • 日期查询

    转载:

    今天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=0

    昨天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=1

    7天内的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())<=7

    30天内的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())<=30

    本月的所有数据:select * from 表名 where DateDiff(mm,datetime类型字段,getdate())=0

    本年的所有数据:select * from 表名 where DateDiff(yy,datetime类型字段,getdate())=0

     

    查询今天是今年的第几天: select datepart(dayofyear,getDate())

    查询今天是本月的第几天:1. select datepart(dd, getDate()) 

                                                    2.select day(getDate())

    查询本周的星期一日期是多少 (注意:指定日期不能是周日,如果是周日会计算到下周一去。所以如果是周日要减一天) SELECT DATEADD(wk,DATEDIFF(wk,0,getdate()),0)

     

    查询昨天日期:select convert(char,dateadd(DD,-1,getdate()),111)  //111是样式号,(100-114)

     

    查询本月第一天日期:Select DATEADD(mm, DATEDIFF(mm,0,getdate()), 0) as firstday

    查询本月最后一天日期:Select dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,getdate())+1, 0)) as lastday      //修改-3的值会有相应的变化

     

    本月有多少天:select datepart(dd,dateadd(dd,-1,dateadd(mm,1,cast((cast(year(getdate()) as varchar)+'-'+cast(month(getdate()) as varchar)+'-01' ) as datetime ))))

     

    求两个时间段相差几天:select datediff(day,'2012/8/1','2012/8/20') as daysum

    在指定的日期上±N天:select convert(char,dateadd(dd,1,'2012/8/20'),111) as riqi    //输出2012/8/21

    在指定的日期上±N分钟:select dateadd(mi,-15,getdate())  //查询当前时间15分钟之前的日期

    --获取当前日期(如:yyyymmdd hh:MM:ss)

    select GETDATE()

    --获取当前日期(如:yyyy-mm-dd)
    Select Datename(year,GetDate())+'-'+Datename(month,GetDate())+'-'+Datename(day,GetDate())

    --昨天的这个时候

    SELECT DATEADD(DAY,-1,GETDATE())

    --查询昨天一天的数据

    Select * From tableName Where DateDiff(dd, PayTime, '2018-01-20') = 1

    https://www.cnblogs.com/wiggin-Z/p/5625930.html

  • 相关阅读:
    android:id="@android:id/tabhost" 、android:id="@+id/llRoot" 、android:id="@id/llRoot" 之间的区别
    android:ellipsize的使用
    PopupWindow为什么要设置setBackgroundDrawable(new BitmapDrawable());
    android中LayoutInflater的3种使用以及getSystemService的API
    context 的理解
    Android 中this、getContext()、getApplicationContext()、getApplication()、getBaseContext() 之间的区别
    android Matrix 使用
    public private protected frientdly 作用域
    pyinstaller参数介绍以及总结
    MongoDB高级查询详细
  • 原文地址:https://www.cnblogs.com/moy-1313133/p/6829479.html
Copyright © 2011-2022 走看看