Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. create table pessoa(
  2. id int not null auto_increment comment 'chave primária',
  3. nome varchar(50) comment 'coluna com o nome',
  4. email varchar(50) comment 'contato da pessoas',
  5. primary key(id)
  6. )comment 'tabela contendo informações de pessoas'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement