sql日期格式轉換

時間 2021-08-11 17:37:24

1樓:祿昂公豐雅

到sql

server2005資料管理系統中把日期的顯示方式有多種,你可以到系統中把日期設定成yyyy-mm-dd格式儲存

2樓:匿名使用者

舉例如下:

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

2006-05-12

select convert(varchar, getdate(), 120 )

2006-05-12 11:06:08

select replace(replace(replace(convert(varchar, getdate(), 120 ),'-',''),' ',''),':','')

20060512110608

select convert(varchar(12) , getdate(), 111 )

2006/05/12

select convert(varchar(12) , getdate(), 112 )

20060512

select convert(varchar(12) , getdate(), 102 )

2006.05.12

其它幾種不常用的日期格式轉換方法:

select convert(varchar(12) , getdate(), 101 )

0612/2005 select convert(varchar(12) , getdate(), 103 )

12/09/2004

select convert(varchar(12) , getdate(), 104 )

12.05.2006

select convert(varchar(12) , getdate(), 105 )

12-05-2006

select convert(varchar(12) , getdate(), 106 )

12 05 2006

select convert(varchar(12) , getdate(), 107 )

05 12, 2006

select convert(varchar(12) , getdate(), 108 )

11:06:08

select convert(varchar(12) , getdate(), 109 )

0512 2006 1

select convert(varchar(12) , getdate(), 110 )

09-12-2004

select convert(varchar(12) , getdate(), 113 )

12 052006

select convert(varchar(12) , getdate(), 114 )

11:06:08.177

sql server 資料庫,在查詢sql語句中日期格式轉換問題,怎麼把原資料年月日時分秒轉換成年月日

3樓:匿名使用者

--取復'2016-10-18'這天的資料select * from case_col_rec where cast(col_time as date)='2016-10-18'

如果你制只是要取某天的資料,不建議你轉換資料型別後來匹配,因為那樣不會走索引

select * from case_col_rec where col_time>='2016-10-18' and col_time<'2016-10-19'

SQL日期轉換 20,sql 日期格式轉換

首先看你是什麼資料咯。如果是sqlserver的話,應該不會是 20080122。而是 2008 01 22 00 00 00 當然,也可能給你資料庫伺服器的環境有關。把列的型別改成datetime查詢的是否就是日期型別的了啊。select convert varchar 20 shijian,20...

sql獲取日期的所有格式,SQL獲取日期的所有格式

在sql server裡有個getdate 的函式是用來獲取日期的,不過精確到秒,比如查詢select getdate 出來的結果為2009 02 26 15 57 35.357,一般用的比較多的是隻獲取日期,並不需要時間,這時候就需要用到convert函式了。在函式convert 中你可以使用許多...

ecel中日期格式怎麼轉換成文字格式

泡影果果 啟動excel 輸入相關資料,然後在單元格d2輸入公式 text c2,0000年00月00日 按下回車得到結果,將純粹的數字格式改為了文字加數字的格式。關於公式的意思,稍後為大家解釋。游標移動到單元格右下角,出現 號,雙擊,就能自動填充完資料。這樣整張 都被轉換了。公式意義 text 數...