Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. INSERT INTO DEPT(DEPTID, DEPTNAME) VALUES
  2. ( 1, 'DEPT1'),
  3. (2, 'DEPT2'),
  4. (3,'DEPT2'),
  5. (4,'DEPT4'),
  6. (5,'DEPT4'),
  7. (6,'DEPT6');
  8.  
  9. INSERT INTO WORK (WORKID, DEPTID, SAL,CITYID) VALUES
  10. ( 100,1,1000,10),
  11. ( 100,2,2000,10),
  12. ( 200,1,2500,20),
  13. ( 300,3,1000,10),
  14. ( 300,6,3000,10),
  15. ( 300,6,1000,30)
  16. ;
  17.  
  18. Cityid deptname count avg-sal
  19. 10 dept1 1 1000
  20. 10 dept2 2 1500
  21. 10 dept4 0 0
  22. 10 dept6 1 3000
  23. Grandtotal 3 2333.33
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement