Código PHP:
create database naitmeir;
use naitmeir;
create table user (
username varchar(16),
passwd char(16) not null,
email varchar(100) not null,
constraint PK_username primary key (username)
);
create table new(
id integer not null,
username varchar(16) not null,
tipo varchar(15),
genero varchar(16),
fecha text(15),
titulo varchar(50),
constraint PK_id primary key (id),
constraint FK_user foreign key (username) references user (username)
);
create table articulo(
id integer not null,
noticia longtext,
constraint FK_new foreign key (id) references new (id)
);
create table video(
id integer not null,
noticia longtext,
constraint FK_new foreign key (id) references new (id)
);
create table encuesta(
idencuesta integer not null,
username varchar(16),
pregunta varchar(50) not null,
respuesta1 varchar(50) not null,
respuesta2 varchar(50) not null,
respuesta3 varchar(50) not null,
respuesta4 varchar(50) not null,
constraint PK_idencuesta primary key (idencuesta),
constraint FK_user foreign key (username) references user (username)
);