• sql 时期格式整理


    我们经常出于某种目的需要使用各种各样的日期格式,当然我们可以使用字符串操作来构造各种日期格式,但是有现成的函数为什么不用呢? 

    SQL Server中文版的默认的日期字段datetime格式是yyyy-mm-dd Thh:mm:ss.mmm 

    例如: 

    select getdate() 

    2004-09-12 11:06:08.177 

    整理了一下SQL Server里面可能经常会用到的日期格式转换方法: 

    举例如下: 

    select CONVERT(varchar, getdate(), 120 ) 
    2004-09-12 11:06:08 

    select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','') 
    20040912110608 

    select CONVERT(varchar(12) , getdate(), 111 ) 
    2004/09/12 

    select CONVERT(varchar(12) , getdate(), 112 ) 
    20040912 

    select CONVERT(varchar(12) , getdate(), 102 ) 
    2004.09.12 

    select CONVERT(varchar(12) , getdate(), 101 ) 
    09/12/2004 

    select CONVERT(varchar(12) , getdate(), 103 ) 
    12/09/2004 

    select CONVERT(varchar(12) , getdate(), 104 ) 
    12.09.2004 

    select CONVERT(varchar(12) , getdate(), 105 ) 
    12-09-2004 

    select CONVERT(varchar(12) , getdate(), 106 ) 
    12 09 2004 

    select CONVERT(varchar(12) , getdate(), 107 ) 
    09 12, 2004 

    select CONVERT(varchar(12) , getdate(), 108 ) 
    11:06:08 

    select CONVERT(varchar(12) , getdate(), 109 ) 
    09 12 2004 1 

    select CONVERT(varchar(12) , getdate(), 110 ) 
    09-12-2004 

    select CONVERT(varchar(12) , getdate(), 113 ) 
    12 09 2004 1 

    select CONVERT(varchar(12) , getdate(), 114 ) 
    11:06:08.177 

    SUBSTRING(CONVERT(varchar(100), GETDATE(), 112),0,7)   当前年月

    select sum(datediff(s,'00:00:00',CONVERT(varchar(100), F13, 8))) from WorkingTime
     
     
    select 338940/3600
     
    select convert(varchar(8),dateadd(ss,338940,108),108)
  • 相关阅读:
    java控制台程序打包为jar
    idea 配置自定义模板
    git clone 使用用户名和密码
    (办公)轻松学redux
    (办公)轻松学 React-Router 4(20210401)
    (办公)探秘react教程20210331
    (办公)html5与css3的相关知识
    删除临时表空间
    windows如何拉取一个文件夹下的所有文件名
    数据文件resize回收空间
  • 原文地址:https://www.cnblogs.com/kedarui/p/3680210.html
Copyright © 2020-2023  润新知