示例:
1) 查詢出工資高於3000的員工資訊
select *
froms_emp e
where e.salary>3000;
2) 查詢出名為carmen的員工所有資訊
select * from s_emp e
wheree.first_name ='carmen';
【oracle sql 關鍵字,表名,列名等不區分大小寫, 記錄中的值大小寫敏感】
3) 查詢出沒有績效的員工資訊
select * from s_emp e
where e.commission_pct is not null;
4) 查詢出工資在1200-3000 之間的員工的姓名,部門編號與薪資
selecte.first_name,e.dept_id,e.salary
froms_emp e
wheree.salary>=1200 and e.salary<=3000;
selecte.first_name , e.dept_id,e.salary
froms_emp e
wheree.salary between 1200 and 3000;
萬用字元 % 與 _
%:表示任意多個字元
_ :表示任意乙個字元
1) 查詢出員工姓名中包含字母為'a'的員工的資訊
select * from s_emp e
where e.first_name like '%a%'
2) 查詢出員工姓名中第乙個字母為's'的員工的姓名
select * from s_emp e
wheree.first_namelike's%'
3) 查詢出員工姓名中包含'a'和'f'的員工的資訊
select * from s_emp e
wheree.first_name like '%a%' and e.first_name like '%f%';
4) 查詢出員工姓名中倒數第三個字母為'i'的員工的資訊
select * from s_emp e
wheree.first_name like '%i__ '
5) 查詢出在31,41部門的所有員工的姓名,部門編號與職位
selecte.first_name,e.dept_id,e.title from s_emp e
wheree.dept_id = 31 or e.dept_id = 41;
selecte.first_name,e.dept_id,e.title from s_emp e
where e.dept_id in (31,41);
【in(31,41)相當於:dept_id=31 or dept_id=41】
6) 找出既不是銷售,也不是辦事員的員工
select * from s_emp
where title != 『sales representative』and title != 『stock clerk』;
select * from s_emp
where title not in(『sales representative』,』stock clerk』);
【not in(『sales representative』,』stock clerk』)相當於】
title != 『sales representative』and title != 『stock clerk』
【獲得 4+30 的值】
select (4+30) from dual;
【獲得當前系統時間】
select sysdate from dual;
【 獲取 『hello』】
select 'hello' from dual;
Oracle 模糊查詢
在where子句中,可以對datetime char varchar欄位型別的列用like子句配合萬用字元選取那些 很像.的資料記錄,以下是可使用的萬用字元 零或者多個字元 單一任何字元 下劃線 特殊字元 在某一範圍內的字元,如 0 9 或者 aeth 不在某範圍內的字元,如 0 9 或者 aeth...
oracle 模糊查詢
oracle10g以上支援正規表示式的函式主要有下面四個 1,regexp like 與like的功能相似 2,regexp instr 與instr的功能相似 3,regexp substr 與substr的功能相似 4,regexp replace 與replace的功能相似 posix 正規表...
oracle模糊查詢
執行資料庫查詢時,有完整查詢和模糊查詢之分。一般模糊語句格式如下 select 字段 from 表 where 某欄位 like 條件 其中,關於條件,sql提供了四種匹配模式 1 表示零個或多個字元。可以匹配任意型別和任意長度的字元,有些情況下若是中文,請使用兩個百分號 表示。比如 select ...