Skip to content

Instantly share code, notes, and snippets.

@marquinhosoliveira
Last active April 14, 2019 15:55
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/48257c536ed6649ad11a3812625995f6 to your computer and use it in GitHub Desktop.
Save marquinhosoliveira/48257c536ed6649ad11a3812625995f6 to your computer and use it in GitHub Desktop.
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