Skip to content

Instantly share code, notes, and snippets.

@marquinhosoliveira
Created April 18, 2019 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marquinhosoliveira/35b279b839c0ecfc3c0b53d120a32286 to your computer and use it in GitHub Desktop.
Save marquinhosoliveira/35b279b839c0ecfc3c0b53d120a32286 to your computer and use it in GitHub Desktop.
LEFT JOIN COM MAIS DE DUAS TABELAS
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