**:
oracle 獲取當前日期及日期格式
返回系統日期,輸出 25-12月-09
select sysdate from dual;
mi是分鐘,輸出 2009-12-25 14:23:31
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;
mm會顯示月份,輸出 2009-12-25 14:12:31
select to_char(sysdate,'yyyy-mm-dd hh24:mm:ss') from dual;
輸出 09-12-25 14:23:31
select to_char(sysdate,'yy-mm-dd hh24:mi:ss') from dual
輸出 2009-12-25 14:23:31
select to_date('2009-12-25 14:23:31','yyyy-mm-dd,hh24:mi:ss') from dual
而如果把上式寫作:
select to_date('2009-12-25 14:23:31','yyyy-mm-dd,hh:mi:ss') from dual
則會報錯,因為小時hh是12進製,14為非法輸入,不能匹配。
輸出 $10,000,00 :
select to_char(1000000,'$99,999,99') from dual;
輸出 rmb10,000,00 :
select to_char(1000000,'l99,999,99') from dual;
輸出 1000000.12 :
select trunc(to_number('1000000.123'),2) from dual;
select to_number('1000000.123') from dual;
轉換的格式:
表示minute的:mi 2位數表示分鐘
表示second的:ss 2位數表示秒 60進製
表示季度的:q 一位數 表示季度 (1-4)
另外還有ww 用來表示當年第幾周 w用來表示當月第幾周。
24小時制下的時間範圍:00:00:00-23:59:59
12小時制下的時間範圍:1:00:00-12:59:59
補充:當前時間減去7分鐘的時間
select sysdate,sysdate - interval '7' minute from dual;
當前時間減去7小時的時間
select sysdate - interval '7' hour from dual;
當前時間減去7天的時間
select sysdate - interval '7' day from dual;
當前時間減去7月的時間
select sysdate,sysdate - interval '7' month from dual;
當前時間減去7年的時間
select sysdate,sysdate - interval '7' year from dual;
時間間隔乘以乙個數字
select sysdate,sysdate - 8*interval '7' h
Oracle 獲取當前日期及日期格式
oracle 獲取當前日期及日期格式 獲取系統日期 sysdate 格式化日期 to char sysdate yy mm dd hh24 mi ss 或 to date sysdate yy mm dd hh24 mi ss 格式化數字 to number 注 to char 把日期或數字轉換為字...
Oracle 獲取當前日期及日期格式
oracle 獲取當前日期及日期格式 獲取系統日期 sysdate 格式化日期 to char sysdate yy mm dd hh24 mi ss 或 to date sysdate yy mm dd hh24 mi ss 格式化數字 to number 注 to char 把日期或數字轉換為字...
Oracle 獲取當前日期及日期格式
oracle 獲取當前日期及日期格式 獲取系統日期 sysdate 格式化日期 to char sysdate yy mm dd hh24 mi ss 或 to date sysdate yy mm dd hh24 mi ss 格式化數字 to number 注 to char 把日期或數字轉換為字...