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日期格式如何轉換,sql日期格式轉換
上一個回答挺好,正解 用convert函式 日期時間轉字串 select convert varchar 100 getdate 0 05 16 2006 10 57am select convert varchar 100 getdate 1 05 16 06 select convert var...
請問Excel中非日期格式的內容如何轉換為日期格式
可以先試一下用 datevalue 單元格 這是 excel 的標準函式。可有的時候由於系統確認的年月日位置不一樣,可能會出現錯誤,或者把月日弄反了。大部分的中文系統識別 年 月 日 的格式,就可以用 以下的公式就在任何系統都可以用 date right a1,4 left a1,find a1 1...
python中,怎麼把字串轉換為日期格式
1 新建來python檔案,testtime.py 2 編碼 將字串轉換為日期格式 import time str 2019 12 23 22 18 30 t time.strptime str,y m d h m s print t print type t 3 視窗右擊選擇 在終端中執行pyth...