Untitled

mail@pastecode.io avatar
unknown
plain_text
3 years ago
1.9 kB
1
Indexable
Never
use db_bandas,



create table bandas (
	id_bandas int not null primary key auto_increment,
	nombre varchar(265) not null,
	integrantes integer not null,
	fecha_inicio date not null,
	fecha_separacion date,
	pais date
)

create table canciones (
	id_canciones int not null primary key auto_increment,
	nombre varchar(265) not null,
	duracion integer not null,
	id_album integer not null,
	id_banda integer not null,
	fecha_publicacion date
)

create table album (
	id_album int not null primary key auto_increment,
	nombre_album varchar(265) not null,
	id_banda integer not null,
	fecha_publicacion date not null
)

drop table bandas

create table banda (
	id_bandas int not null primary key auto_increment,
	nombre varchar(265) not null,
	integrantes integer not null,
	fecha_inicio date not null,
	fecha_separacion date,
	pais date
)

drop table canciones 

create table cancion (
	id_cancion int not null primary key auto_increment,
	nombre varchar(265) not null,
	duracion integer not null,
	id_album integer not null,
	id_banda integer not null,
	fecha_publicacion date
)

insert into banda (nombre, integrantes, fecha_inicio, fecha_separacion, pais)
values ('Oasis', 4, '1991-01-01', '2009-12-31', 'Inglaterra'),

drop table banda

create table banda (
	id_bandas int not null primary key auto_increment,
	nombre varchar(265) not null,
	integrantes integer not null,
	fecha_inicio date not null,
	fecha_separacion date,
	pais varchar(265)
)

insert into banda (nombre, integrantes, fecha_inicio, fecha_separacion, pais)
values ('Oasis', 4, '1991-01-01', '2009-12-31', 'Inglaterra')

insert into banda (nombre, integrantes, fecha_inicio, pais)
values ('ACDC', 5, '1973-01-01', 'Australia')

insert into cancion (nombre, duracion, id_album, id_banda, fecha_publicacion)
values ('')