Demo database

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@862 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2009-07-21 14:25:00 +00:00
parent 116c873671
commit b1668e05fb

30
examples/cds.sql Normal file
View file

@ -0,0 +1,30 @@
CREATE DATABASE cds COLLATE utf8_czech_ci;
USE cds;
CREATE TABLE interprets (
id int NOT NULL auto_increment,
name varchar(50) NOT NULL COMMENT 'Name',
PRIMARY KEY (id)
) ENGINE=InnoDB COMMENT='Interprets';
CREATE TABLE albums (
id int NOT NULL auto_increment,
interpret int NOT NULL COMMENT 'Interpret',
name varchar(100) NOT NULL COMMENT 'Name',
FOREIGN KEY (interpret) REFERENCES interprets(id),
PRIMARY KEY (id)
) ENGINE=InnoDB COMMENT='Albums';
CREATE TABLE songs (
id int NOT NULL auto_increment,
album int NOT NULL COMMENT 'Album',
rank tinyint(4) NOT NULL COMMENT 'Rank',
title varchar(100) NOT NULL COMMENT 'Title',
duration time NOT NULL COMMENT 'Duration',
FOREIGN KEY (album) REFERENCES albums(id),
PRIMARY KEY (id)
) ENGINE=InnoDB COMMENT='Songs';
INSERT INTO interprets VALUES (1, 'Michael Jackson');
INSERT INTO albums VALUES (1, 1, 'Dangerous');
INSERT INTO songs VALUES (1, 1, 1, 'Jam', '00:05:39'), (2, 1, 2, 'Why You Wanna Trip On Me', '00:05:24'), (3, 1, 3, 'In the Closet', '00:06:31'), (4, 1, 4, 'She Drives Me Wild', '00:03:41'), (5, 1, 5, 'Remember the Time', '00:04:00'), (6, 1, 6, 'Can\'t Let Her Get Away', '00:04:58'), (7, 1, 7, 'Heal the World', '00:06:24'), (8, 1, 8, 'Black or White', '00:04:15'), (9, 1, 9, 'Who Is It', '00:06:34'), (10, 1, 10, 'Give In To Me', '00:05:29'), (11, 1, 11, 'Will You Be There', '00:07:40'), (12, 1, 12, 'Keep the Faith', '00:05:57'), (13, 1, 13, 'Gone Too Soon', '00:03:23'), (14, 1, 14, 'Dangerous', '00:06:57');