Sie sind auf Seite 1von 2

--create database videoclub /* CREATE TABLE cliente ( idcliente int identity(1,1) PRIMARY KEY , nombre varchar(250) default NULL,

apellido1 varchar(250) default NULL, apellido2 varchar(250) default NULL, venta int,constraint fk1 foreign key (venta) references ventanilla(idventa)) CREATE TABLE ventanilla ( idventa int identity(1,1) PRIMARY KEY , fecha date , descuento money, constraint fk2 foreign key (idventa) references peliculas(idp elicula)) CREATE TABLE peliculas ( idpelicula int identity(1,1) PRIMARY KEY , nombre varchar (255), stock int, precio_actual money, ao int, generos varchar(250) default NULL, productores varchar(250) default NULL, directores varchar(250) default NULL, actores text, sinopsis text, constraint fk4 foreign key (idpelicula) references proveedores(idprov)) CREATE TABLE proveedores ( idprov int identity(1,1) PRIMARY KEY , nombre varchar(250) default NULL, direccion varchar(250) default NULL, telefono int, proveematerial text default NULL) INSERT INTO peliculas (name,stock, precio_actual, ao, generos, productores, direc tores, actores, sinopsis) VALUES ( 'Avatar',54, 25.95, 2008, 'Ciencia Ficcion, Drama, Romance', 'James Cameron', 'James Cameron', 'Brad Pitt, Angelina Jolie, Bruce Willies', 'A paraplegic mari ne dispatched to the moon Pandora on a unique mission becomes torn between follo wing his orders and protecting the world he feels is his home.'), ( 'Predators', 80, 30, 2010, 'Action, Adventure, Sci-Fi', 'Nimrd Antal', 'Nimrd An tal', 'Adrien Brody, Topher Grace, Alice Braga', 'A group of elite warriors are hunted by members of a merciless alien race known as Predators.'), ( 'Centurion', 24, 22.95, 2010, 'Action, Adventure, Drama ', 'Neil Marshall', 'N eil Marshall', 'Michael Fassbender, Andreas Wisniewski, Dave Legeno', 'A splinte r group of Roman soldiers fight for their lives behind enemy lines after their l egion is decimated in a devastating guerrilla attack.'), ( 'Repo Men', 41, 27.95, 2010, 'Action, Crime, Drama ', 'Miguel Sapochnik', 'Eri ck Garcia', 'Jude Law, Forest Whitaker, Alice Braga', 'Set in the near future wh en artificial organs can be bought on credit, it revolves around a man who strug gles to make the payments on a heart he has purchased. He must therefore go on t he run before said ticker is repossessed. '), ( 'Solomon Kane', 36, 25, 2009, 'Action, Adventure, Fantasy', 'Michael J. Basset t', 'Michael J. Bassett', 'James Purefoy, Mark O Neal, Robert Orr', 'A mercenary who owes his soul to the devil redeems himself by fighting evil.'), ( '21 Gramos', 57, 39, 2003, 'Drama, Thriller, Romance', 'Michael J. Bassett', ' Michael J. Bassett', 'Benecio del Toro', 'A mercenary who owes his soul to the d

evil redeems himself by fighting evil.') */ --alter table proveedores add constraint eliculas(idpelicula) --select * from peliculas fk6 foreign key (idprov) references p

Das könnte Ihnen auch gefallen