Oracle中的一些時間處理

2021-05-18 15:25:40 字數 680 閱讀 3059

oracle

中的時間處理 1.

select sysdate from dual。

2. select sysdate from dual 。

3. select sysdate - 0.041666687 from dual。

4.得到當前年份:

select to_char(sysdate, 『yyyy』) from dual; 5.

得到當前月份:

select to_char(sysdate, 『mm』) from dual; 6.

得到當前天:

select to_char(sysdate, 『dd』) from dual; 7.

得到當前小時:

select to_char(sysdate, 『hh24』) from dual; 8.

得到當前分:

select to_char(sysdate, 『mi』) from dual; 9.

得到當前秒:

select to_char(sysdate, 『ss』) from dual;

10.得到當前天和乙個日期相差的天數:

select sysdate – to_date(『2009-12-10 14:12:13』, 『yyyy-mm-dd hh24:mi:ss』) from dual;

11.

oracle 的一些處理

1.oracle 自定義異常 v exception exception 定義異常變數 pragma exception init v exception,20001 繫結異常 處理異常資訊 exception when v exception then 處理邏輯 when others then ...

前端一些時間的處理

let ymd let mouth time.getmonth 1 10 time.getmonth 1 0 time.getmonth 1 let day time.getdate 10 time.getdate 0 time.getdate ymd time.getfullyear 獲取年份。y...

Oracle中的一些方法

解除被鎖的使用者 alter user scott 使用者名稱 account unlock 顯示當前使用者 show user 修改使用者的密碼 alter user scott identified by tiger 建立使用者 create user zhangsan identified b...