Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. SELECT PAPA.idPAPA AS PAPA, HIJO.idHIJO AS HIJO, NIETO.idNIETO AS NIETO,
  2. BISNIETO.idBISNIETO AS BISNIETO
  3. FROM PAPA
  4. LEFT JOIN HIJO ON HIJO.PreH=PAPA.idPAPA
  5. LEFT JOIN NIETO ON NIETO.PreN=HIJO.idHIJO
  6. LEFT JOIN BISNIETO ON BISNIETO.PreB=NIETO.idNIETO
  7. ORDER BY idPAPA,idHIJO,idNIETO,idBISNIETO ASC;
  8.  
  9. SELECT idPAPA, idHIJO, idNIETO, idBISNIETO
  10. FROM
  11. (SELECT PAPA.idPAPA AS PAPA, HIJO.idHIJO AS HIJO,NIETO.idNIETO AS
  12. NIETO,BISNIETO.idBISNIETO AS BISNIETO
  13. FROM PAPA
  14. LEFT JOIN HIJO ON HIJO.PreH=PAPA.idPAPA
  15. LEFT JOIN NIETO ON NIETO.PreN=HIJO.idHIJO
  16. LEFT JOIN BISNIETO ON BISNIETO.PreB=NIETO.idNIETO
  17. WHERE idPAPA="A"
  18. ) ORDER BY idPAPA,idHIJO,idNIETO,idBISNIETO ASC
  19. ;
Add Comment
Please, Sign In to add comment