開發工具與關鍵技術:oracle sql*plus 與 plsql developer
時間日期函式
1.查詢時間格式(sql語句)
1.to_date函式
2.to_date的格式:to_date(『要轉換的時間』,』轉換成的時間格式』), 兩個引數的格式必須匹配,不然會報錯。
3.to_char(日期,」轉換格式」 ) 即把給定的日期按照「轉換格式」轉換。
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;
2.查詢日期之間的資料 例如查詢employees表**生日期(hire_date)在』'1986-01-01』 和』 '1988-01-01』之間的資料:
select * from employees where hire_date between '1986-01-01' and '1988-01-01';
3.如果對於日期範圍不規則的資料需要先轉格式,如下
select * from employees where to_date(hire_date,'yyyy-mm-dd')between
to_date('1986-01-01','yyyy-mm-dd') and to_date('1988-01-01','yyyy-mm-dd');
4.to_char函式對數字的轉換,格式如下:
符號名稱9數字
0零$美元符
l人民幣(¥)
.小數點
,千位符
select to_char(salary, '$99,999.00') salary from employees
where last_name = 'ernst';
5.last_day(d)關鍵字 獲取包含d的月最後一天的日期
select last_day(sysdate) from dual;
結果:-- 獲取本月最後一天: 2014/5/31 22:46:01
add_months(d, n) 日期d往後推n個月
select add_months(sysdate,2) from dual;
結果:-- 日期往後推2個月: 2014/7/20 22:49:36
next_day(d, day)
select next_day(sysdate,2) from dual;
-- 日期sysdate之後的第一周中, 指定星期的第2天是什麼日期
months_between(f,s) 日期f和s間相差月數
select months_between(sysdate,to_date('2007-04-12','yyyy-mm-dd'))from dual;
結果:-- 85.2889874551971
9.獲取兩個日期間的天數
select floor(sysdate - to_date('20140405','yyyymmdd')) from dual;
10.cast函式
轉換日期格式
select cast('20190327'as date) from dual;
轉換數字格式
select cast('020190327'as number) from dual;
11.只能是系統時間使用day或者是資料庫中的列中的日期都能使用
select to_char(sysdate, 'day') from dual;
獲取sysdate年份或者是資料庫中的列中的日期都能使用
select to_char(sysdate, 'yyyy') from dual
12.insert …into… 時間的處理
insert into 表名(id,name,hire_date)
values(100,'使用者壹',to_date('21-6月-1989','dd-mon-yyyy'))
轉換成格式儲存進資料庫中。
例子: 查詢出與當月的員工入職日期的月份相同的人數有多少人數?
select last_name to_char(sysdate,』mon』),hire_date
from employees
where to_char (sysdate,』mon』)= to_char(hire_date,』mon』);
例子: select to_date(sysdate+to_date(2019-03-27,『yyyy-mm-dd』))from dual;
Oracle SQL語句處理過程
07年開始,換了一家公司,資料庫使用的是oracle10g,以前一直使用的是informix和msserver,感覺oracle功能還真強大,比informi和msserver都好用多啦,體系結構和管理方式都有了許多變化,但使用兩個月下來,其實資料庫的基本原理是一樣的,現結合以前的工作經驗和學習的資...
mysql 日期處理 mysql日期處理函式
mysql自己有格式化日期格式的函式 date format date,format 根據format字串格式化date值。下列修飾符可以被用在format字串中 m 月名字 january december w 星期名字 sunday saturday d 有英語字首的月份的日期 1st,2nd,...
mysql日期處理 mysql日期處理函式例項解析
這篇文章主要介紹了mysql日期處理函式例項解析,文中通過示例 介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下 首先建立一張實驗用的一張表 drop table if exists t student create table t student id int pr...