CREATE TABLE `alunos` (
`id` int(4) NOT NULL,
`nome_aluno` varchar(100) NOT NULL,
`nota1` float NOT NULL,
`nota2` float NOT NULL,
`nota3` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Extraindo dados da tabela `alunos`
--
INSERT INTO `alunos` (`id`, `nome_aluno`, `nota1`, `nota2`, `nota3`) VALUES
(1, 'Iúri Santos', 10, 9, 8),
(2, 'Aluno 2', 7, 8, 9),
(3, 'Aluno 3', 9, 10, 9),
(4, 'Aluno 4', 5, 4, 2),
(5, 'Aluno 5', 3, 2, 1);
--
-- Índices para tabelas despejadas
--
--
-- Índices para tabela `alunos`
--
ALTER TABLE `alunos`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT de tabelas despejadas
--
--
-- AUTO_INCREMENT de tabela `alunos`
--
ALTER TABLE `alunos`
MODIFY `id` int(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;