配套其他第一天練習_第1頁
配套其他第一天練習_第2頁
配套其他第一天練習_第3頁
配套其他第一天練習_第4頁
配套其他第一天練習_第5頁
全文預覽已結束

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、第一天練習1.查詢工資大于 12000 的員工select last_name, salary from employeeswhere salary 12000和工資2.查詢員工號為 176 的員工的select last_name, department_id from employeeswhere employee_id = 176和部門號3.選擇工資不在 5000 到 12000 的員工的select last_name, salary from employeeswhere salary not betn 5000 and 12000和工資4.選擇雇用時間在 1998-02-01 到

2、1998-05-01 之間的員工,job_id和雇用時間select last_name, job_id, hire_date from employeeswhere hire_date betn 1-2 月 -1998 and 1-5 月 -19985.選擇在 20 或 50 號部門工作的員工select last_name, department_id from employeeswhere department_id in (20, 50)和部門號6.選擇在 1994 年雇用的員工的select last_name, hire_date from employeeswhere hire_

3、daike % -94和雇用時間7.選擇公司中沒有管理者的員工select last_name, job_id from employeeswhere manager_id is null及 job_id8.選擇公司中有獎金的員工,工資和獎金級別select last_name, salary, commis_pctfrom employeeswhere commis_pct is not null9.選擇員工select last_name from employees的第三個字母是 a 的員工where last_name like a%10. 選擇中有字母 a 和 e 的員工select

4、 last_name from employeeswhere last_name like %a% and last_name like %e%11. 顯示系統(tǒng)時間select to_char(sysdate, yyyy-mm-dd hh:mi:ss) from dual;12. 查詢員工號,工資,以及工資提高百分之 20%后的結果(newsalary)select employee_id, last_name, salary, salary * 1.2 new salary from employees;13. 將員工的按首字母排序,并寫出的長度(length)select last_nam

5、e, length(last_name) from employeesorder by last_name14. 查詢各員工的,并顯示出各員工在公司工作的月份數(shù)(worked_month)。select last_name, months_betn(sysdate, hire_date) worked_month from employees15. 查詢員工的,以及在公司工作的月份數(shù)(worked_month),并按月份數(shù)降序排列select last_name, months_betn(sysdate, hire_date) worked_month from employeesorder

6、by worked_month desc16. 做一個查詢,產生下面的結果 earns monthly but wants select last_name | earns | salary | monthly but wants | salary* 3from employees17. 使用 decode 函數(shù),按照下面的條件:jobgradeAD_PRESAST_MANBIT_PROGCSA_REPDST_CLERKEOthersF產生下面的結果select last_name, job_id, decode(job_id, AD_PRES, A,ST_MAN, B,IT_PROG, C,

7、SA_REP, D,ST_CLERK, E,F) GRADEfrom employees18. 將第 7 題的查詢用 case 函數(shù)再寫一遍。select last_name, job_id, case job_id when AD_PRES then Awhen ST_MAN then Bwhen IT_PROG then Cwhen SA_REP then Dwhen ST_CLERK then Eelse FLast_nameJob_idGradekingAD_PRESADream SalaryKing earns $24000 monthly but wants $72000endfr

8、om employees19. 查詢公司員工工資的最大值,最小值,平均值,總和Select max(salary), min(salary), avg(salary), sum(salary)From employees20. 查詢各 job_id 的員工工資的最大值,最小值,平均值,總和Select job_id, max(salary), min(salary), avg(salary), sum(salary)From employeesGroup by job_id21. 選擇具有各個 job_id 的員工人數(shù)Select job_id, count(employee_id)From

9、employeesGroup by job_id;22. 查詢員工最高工資和最低工資的差距(DIFFERENCE)Select max(salary) min(salary) differenceFrom employees23. 查詢各個管理者手下員工的最低工資,其中最低工資不能低于6000,沒有管理者的員工不計算在內Select manager_id, min(salary)From employeesWhere manager_id is not nullGroup by manager_idHaving min(salary) = 600024. 查詢所有部門的名字,location_id,員工數(shù)量和工資平均值Select department_name, location_

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論