Created
April 18, 2019 01:29
-
-
Save marquinhosoliveira/35b279b839c0ecfc3c0b53d120a32286 to your computer and use it in GitHub Desktop.
LEFT JOIN COM MAIS DE DUAS TABELAS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT FILHO.NMFILHO,MULHER.NMMULHER,HOMEM.NMHOMEM FROM | |
FILHO LEFT JOIN MULHER ON | |
FILHO.IDMULHER = MULHER.IDMULHER | |
LEFT JOIN HOMEM ON | |
FILHO.IDHOMEM = HOMEM.IDHOMEM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment