字元到日期時間型別的相互轉換:to_char()把時間轉換成指定格式的字串型別(db2較低版本不支援)。
「yyyy-mm-dd hh:mi:ss」 十二小時制;
「yyyy-mm-dd hh24:mi:ss」 二十四小時制
例句sql:
select
to_char(timestamp('2012-5-25 21:18:12'),'yyyy-mm-dd') to_char,
replace(char('2018-01-01'),'-','') replace,
date( timestamp_format('20110530','yyyy-mm-dd')) date0,
date(trim(char('2018-01-01'))) date1 ,
date('2018-01-01') date2,
timestamp('2018-01-01') timestamp1,
to_date('2018-01-01','yyyy-mm-dd') to_date
,current timestamp
from cd_brand_type a
查詢結果
參考**:感謝網友的分享
db2中字元、數字和日期型別之間的轉換
db2日期和時間常用彙總
db2日期資料型別格式化
DB2 日期資料型別格式化
db2 日期資料型別格式化 1 計算日期差 yyyy mm ddchar 資料 selectdays date 2011 05 20 days date current date from sysibm.dual 2 日期遞增 selectchar date days current date 1 ...
格式化日期
格式化日期 輸出形式取決於使用者計算機的文化設定。using system using system.globalization public class mainclass string date for int i 0 i format.length i d 07 11 2004 輸出 d su...
格式化日期
function dateformat datestr,types dim datestring if isdate datestr false then datestring end if select case types case 1 datestring year datestr month...