Advertisement
panaewboi

LAB7 1-4

Oct 28th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.44 KB | None | 0 0
  1. -----LAB7-----
  2.  
  3. --1.    List staffs who manage properties with three rooms.
  4. SELECT *
  5. FROM staff s
  6. WHERE s.staffno IN(
  7.     SELECT pf.staffno
  8.     FROM propertyforrent pf
  9.     WHERE pf.rooms = 3);
  10.    
  11.    
  12. --2.    List properties that ownerโ€™s telephone number starts with 012.
  13. SELECT *
  14. FROM propertyforrent pf
  15. WHERE pf.ownerno IN(
  16.     SELECT po.ownerno
  17.     FROM privateowner po
  18.     WHERE pf.ownerno = po.ownerno
  19.     AND po.telno LIKE '012%');
  20.    
  21. --3.    List branches that do not have any staff.
  22.  
  23. --type1
  24. SELECT *
  25. FROM branch b
  26. WHERE b.branchno NOT IN (
  27.     SELECT branchno
  28.     FROM staff);
  29. -- --- ---- -----
  30. --type2
  31. SELECT *
  32. FROM branch b
  33. WHERE NOT EXISTS(
  34.     SELECT s.branchno
  35.     FROM staff s
  36.     WHERE s.branchno = b.branchno);
  37.    
  38.    
  39. --4.    List staffs whose salary is less than the average salary of all staffs and staffs who work in the branch located in Glasgow city.
  40. SELECT *
  41. FROM staff s
  42. WHERE s.salary <(
  43.     SELECT AVG(s.salary)
  44.     FROM staff s
  45. )AND EXISTS(
  46.     SELECT b.branchno
  47.     FROM branch b
  48.     WHERE s.branchno = b.branchno
  49.     AND b.city = 'Glasgow');
  50.    
  51. --5.    List staffs whose salary is greater than the salaries of all staffs who work at branch number B003.
  52. --6.    List properties that are viewed by clients more than two times.
  53. --7.    List clients who registered in the branch at 163 Main Street.
  54. --8.    In each branch, list staffs whose salary is greater than the average salary in their branch.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement