Guest User

Untitled

a guest
Feb 17th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. DROP TABLE IF EXISTS `tb_aluno`;
  2. CREATE TABLE IF NOT EXISTS `tb_aluno` (
  3. `id_aluno` int(11) NOT NULL AUTO_INCREMENT,
  4. `nm_aluno` varchar(10) DEFAULT NULL,
  5. PRIMARY KEY (`id`)
  6. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  7. COMMIT;
Add Comment
Please, Sign In to add comment