Skip to content

Instantly share code, notes, and snippets.

@waldyrfelix
Created November 8, 2011 17:34
Show Gist options
  • Save waldyrfelix/1348473 to your computer and use it in GitHub Desktop.
Save waldyrfelix/1348473 to your computer and use it in GitHub Desktop.
Script de criação de tabela para o teste de performance.
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