Banco De Dados
Trabalho Escolar: Banco De Dados. Pesquise 861.000+ trabalhos acadêmicosPor: rosana8o • 4/11/2013 • 269 Palavras (2 Páginas) • 410 Visualizações
--CREATE DATABASE JOGOCONHECIMENTO
--USE JOGOCONHECIMENTO
/*create table tblarea_conhecimento
(
idarea int not null,
descricao char(15),
constraint pkidarea primary key (idarea),
)
create table tbljogo
(
idjogo int not null,
nome char(20),
datajogo date,
constraint pkidjogo primary key (idjogo),
)
create table tblperfil
(
idperfil int not null,
tipo char(10),
constraint pkidperfil primary key(idperfil),
)
create table tblusuario
(
idusuario int not null,
idperfil int,
senha int,
nomeusuario char(15),
email char(20),
constraint pkidusuario primary key(idusuario),
constraint fkidperfil foreign key(idperfil) references tblperfil(idperfil),
)
create table tblpergunta
(
idpergunta int not null,
idarea int,
descricao char (100),
nivel char(10),
constraint pkidpergunta primary key (idpergunta),
constraint fkidarea foreign key (idarea) references tblarea_conhecimento(idarea),
)
create table tblrespostas
(
idresposta int not null,
idpergunta int,
alternativa1 char(20),
alternativa2 char(20),
alternativa3 char(20),
alternativa4 char(20),
correta char(20),
constraint pkidresposta primary key(idresposta),
constraint fkidpergunta foreign key (idpergunta) references tblpergunta,
)
create table tblquestionario
(
idquest int not null,
idusuario int,
idjogo int,
pontos float,
constraint pkidquest primary key(idquest),
constraint fkidusuario foreign key(idusuario) references tblusuario(idusuario),
constraint fkidjogo foreign key (idjogo) references tbljogo(idjogo),
)
create table tbljogo_pergunta
(
idjogopergunta int not null,
idjogo int,
idpergunta int,
constraint pkidjogopergunta primary key(idjogopergunta),
constraint fkidjogo1 foreign key (idjogo) references tbljogo (idjogo),
constraint fkidpergunta1 foreign key (idpergunta) references tblpergunta(idpergunta),
)*/
--CREATE DATABASE JOGOCONHECIMENTO
--USE JOGOCONHECIMENTO
/*create table tblarea_conhecimento
(
idarea int not null,
descricao char(15),
constraint pkidarea primary key (idarea),
)
create table tbljogo
(
idjogo int not null,
nome char(20),
datajogo date,
constraint pkidjogo primary key (idjogo),
)
create
...