Last active
April 14, 2019 15:55
-
-
Save marquinhosoliveira/48257c536ed6649ad11a3812625995f6 to your computer and use it in GitHub Desktop.
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
CREATE TABLE HOMEM ( | |
IDHOMEM INT, | |
NMHOMEM VARCHAR(50) | |
) | |
GO | |
CREATE TABLE MULHER ( | |
IDMULHER INT, | |
NMMULHER VARCHAR(50) | |
) | |
GO | |
CREATE TABLE FILHO ( | |
IDFILHO INT, | |
IDHOMEM INT, | |
IDMULHER INT, | |
NMFILHO VARCHAR(50) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment