Last active
April 14, 2019 16:04
-
-
Save marquinhosoliveira/2b1b4d4e8fa212ab73d75562feeeaeec to your computer and use it in GitHub Desktop.
SELECIONA TODOS OS HOMENS COM FILHO
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 HOMEM.NMHOMEM, FILHO.NMFILHO FROM | |
HOMEM INNER JOIN FILHO ON | |
HOMEM.IDHOMEM = FILHO.IDHOMEM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment