Created
November 8, 2011 17:34
-
-
Save waldyrfelix/1348473 to your computer and use it in GitHub Desktop.
Script de criação de tabela para o teste de performance.
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 categoria ( | |
id int not null identity primary key, | |
nome varchar(100) not null, | |
) | |
create table produto ( | |
id int not null identity primary key, | |
nome varchar(100) not null, | |
preco money not null, | |
categoria_id int not null foreign key references categoria(id) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment