常用SQL时间格式SQLServer中文版的默认的日期字段datetime格式是yyyy-mm-d

时间:2021-11-02 16:40:34
常用SQL时间格式 SQL Server中文版的默认的日期字段datetime格式是yyyy-mm-dd Thh:mm:ss.mmm

例如:

select getdate()

-- ::08.177

这对于在要不同数据库间转移数据或者习惯oracle日期格式YYYY-MM-DD HH24:MI:SS的人多少有些不方便.

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

举例如下:

select CONVERT(varchar, getdate(),  )

-- ::

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

select CONVERT(varchar() , getdate(),  )

//

select CONVERT(varchar() , getdate(),  )

select CONVERT(varchar() , getdate(),  )

2004.09.

其它我不常用的日期格式转换方法:

select CONVERT(varchar() , getdate(),  )

//

select CONVERT(varchar() , getdate(),  )

//

select CONVERT(varchar() , getdate(),  )

12.09.

select CONVERT(varchar() , getdate(),  )

--

select CONVERT(varchar() , getdate(),  )

select CONVERT(varchar() , getdate(),  )

 , 

select CONVERT(varchar() , getdate(),  )

::

select CONVERT(varchar() , getdate(),  )

select CONVERT(varchar() , getdate(),  )

--

select CONVERT(varchar() , getdate(),  )