Created
April 18, 2019 00:50
-
-
Save marquinhosoliveira/11ae3be1ac5d4c07ab2bb44e111dbcea to your computer and use it in GitHub Desktop.
TODAS AS MULHERES QUE NÃO TEM FILHOS
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 MULHER.NMMULHER, FILHO.NMFILHO FROM | |
MULHER LEFT JOIN FILHO ON | |
MULHER.IDMULHER = FILHO.IDMULHER | |
WHERE FILHO.IDMULHER IS NULL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment