create table tbalunos
(
idaluno int auto_increment primary key,
nome char(60),
);
insert into tbalunos (2009, 2010, "");
insert into tbalunos (2010, 2010, "");
insert into tbalunos (2011, 2010, "");
insert into tbalunos (2012, 2010, "");
create table Student
(
idaluno int auto_increment primary key,
nome char(60),
);
|