当前位置:Gxlcms > mssql > sqlserver中datetime字段去除时间的语句

sqlserver中datetime字段去除时间的语句

时间:2021-07-01 10:21:17 帮助过:38人阅读

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 

select CONVERT(varchar(10) , getdate(), 120 ) 

您可能感兴趣的文章:

  • sql语句中如何将datetime格式的日期转换为yy-mm-dd格式
  • 使用 MySQL Date/Time 类型
  • sql server中datetime字段去除时间代码收藏
  • sqlserver和oracle中对datetime进行条件查询的一点区别小结
  • SQLSERVER 中datetime 和 smalldatetime类型分析说明
  • mysql From_unixtime及UNIX_TIMESTAMP及DATE_FORMAT日期函数
  • MySQL时间字段究竟使用INT还是DateTime的说明
  • Sql中将datetime转换成字符串的方法(CONVERT)
  • MySql用DATE_FORMAT截取DateTime字段的日期值
  • SqlDateTime溢出该怎么解决

人气教程排行