SQL.Mysql中Cast()函式的用法
阿新 • • 發佈:2019-02-02
之前講到了orcale的字串與日期等型別的轉換,現在我們來看看Mysql是怎麼轉換的。比起orcale,MySQL相比之下就簡單得多了,只需要一個Cast()函式就能搞定。其語法為:Cast(欄位名 as 轉換的型別 ),其中型別可以為:
CHAR[(N)] 字元型
DATE 日期型
DATETIME 日期和時間型
DECIMAL float型
SIGNED int
TIME 時間型
例如表table1
date
2015-11-03 15:31:26
select cast(date as signed) as date from table1;
結果如下:
date
20151103153126
select cast(date as char) as date from table1;
結果如下:
date
2015-11-03 15:31:26
select cast(date as datetime) as date from table1;
結果如下:
date
2015-11-03 15:31:26
select cast(date as date) as date from table1;
結果如下:
date
2015-11-03
select cast(date as time) as date from table1;
結果如下:
date
15:31:26這裡date對應日期,time對應時間