Advertisement
Guest User

Untitled

a guest
Feb 13th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.34 KB | None | 0 0
  1. -- Question 3a
  2. UPDATE DroitConge
  3. SET NbJours = 10
  4. SELECT *
  5. FROM DroitConge
  6. JOIN Employe
  7. ON DroitConge.NumEmploye = Employe.NumEmploye
  8. JOIN NatureConge
  9. ON DroitConge.NumNatureConge = NatureConge.NumNatureConge
  10. WHERE Employe.Nom = 'LHERMITTE' AND NatureConge.LibelleNat = 'Conge Annuel';
  11.  
  12.  
  13. -- Question 3b
  14.  
  15. -- Question 3c
  16.  
  17. -- Question 3d
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement