date的格式是‘2013-01-01 00:00:00’
可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。
用to_char()吧, to_char(date,'YYYY')--年 to_char(date,'MM')--月 to_char(date,'DD')--日 to_char(date,'HH')--小时 to_char(date,'MI')--分 to_char(date,'SS')--秒 可以随意组合 比如to_char(date,'YYYY-MM-DD HH24:MI:SS') 也可以to_char(date,'YYYY SS')