-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundesliga.sql
119 lines (103 loc) · 5.6 KB
/
bundesliga.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
-- MySQL Script generated by MySQL Workbench
-- 06/26/14 21:40:02
-- Model: New Model Version: 1.0
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
-- -----------------------------------------------------
-- Schema bundesliga
-- -----------------------------------------------------
DROP SCHEMA IF EXISTS `bundesliga` ;
CREATE SCHEMA IF NOT EXISTS `bundesliga` DEFAULT CHARACTER SET latin1 ;
USE `bundesliga` ;
-- -----------------------------------------------------
-- Table `bundesliga`.`liga`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `bundesliga`.`liga` ;
CREATE TABLE IF NOT EXISTS `bundesliga`.`liga` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(45) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `name_UNIQUE` (`id` ASC))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bundesliga`.`verein`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `bundesliga`.`verein` ;
CREATE TABLE IF NOT EXISTS `bundesliga`.`verein` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(45) NOT NULL,
`liga` INT(11) NOT NULL,
`stadion` VARCHAR(45) NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `name_UNIQUE` (`id` ASC),
INDEX `fk_verein_liga1_idx` (`liga` ASC),
CONSTRAINT `fk_verein_liga1`
FOREIGN KEY (`liga`)
REFERENCES `bundesliga`.`liga` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bundesliga`.`spieler`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `bundesliga`.`spieler` ;
CREATE TABLE IF NOT EXISTS `bundesliga`.`spieler` (
`id` INT NOT NULL AUTO_INCREMENT,
`verein` INT(11) NOT NULL,
`name` VARCHAR(45) NOT NULL,
`trikotnummer` INT NOT NULL,
`heimatland` VARCHAR(45) NOT NULL,
`tore` INT NOT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `id_UNIQUE` (`id` ASC),
INDEX `fk_spieler_verein1_idx` (`verein` ASC),
CONSTRAINT `fk_spieler_verein1`
FOREIGN KEY (`verein`)
REFERENCES `bundesliga`.`verein` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `bundesliga`.`spiel`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `bundesliga`.`spiel` ;
CREATE TABLE IF NOT EXISTS `bundesliga`.`spiel` (
`id` INT NOT NULL AUTO_INCREMENT,
`datum` DATE NOT NULL,
`uhrzeit` TIME NOT NULL,
`gastgeber` INT NOT NULL,
`gast` INT NOT NULL,
`gastgeber_tore` INT NOT NULL,
`gast_tore` INT NOT NULL,
`spieltag` INT NOT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `id_UNIQUE` (`id` ASC),
INDEX `fk_spiel_verein1_idx` (`gastgeber` ASC),
INDEX `fk_spiel_verein2_idx` (`gast` ASC),
CONSTRAINT `fk_spiel_verein1`
FOREIGN KEY (`gastgeber`)
REFERENCES `bundesliga`.`verein` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_spiel_verein2`
FOREIGN KEY (`gast`)
REFERENCES `bundesliga`.`verein` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
USE `bundesliga` ;
-- -----------------------------------------------------
-- Placeholder table for view `bundesliga`.`arffexport`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `bundesliga`.`arffexport` (`spiel` INT, `verein` INT, `spieltag` INT, `tag` INT, `tore` INT, `gegentore` INT, `heimvorteil` INT, `niederlage` INT);
-- -----------------------------------------------------
-- View `bundesliga`.`arffexport`
-- -----------------------------------------------------
DROP VIEW IF EXISTS `bundesliga`.`arffexport` ;
DROP TABLE IF EXISTS `bundesliga`.`arffexport`;
USE `bundesliga`;
CREATE OR REPLACE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `bundesliga`.`arffexport` AS select `bundesliga`.`spiel`.`id` AS `spiel`,`bundesliga`.`verein`.`id` AS `verein`,`bundesliga`.`spiel`.`spieltag` AS `spieltag`,dayofweek(`bundesliga`.`spiel`.`datum`) AS `tag`,(case when (`bundesliga`.`spiel`.`gastgeber` = `bundesliga`.`verein`.`id`) then `bundesliga`.`spiel`.`gastgeber_tore` when (`bundesliga`.`spiel`.`gast` = `bundesliga`.`verein`.`id`) then `bundesliga`.`spiel`.`gast_tore` end) AS `tore`,(case when (`bundesliga`.`spiel`.`gastgeber` = `bundesliga`.`verein`.`id`) then `bundesliga`.`spiel`.`gast_tore` when (`bundesliga`.`spiel`.`gast` = `bundesliga`.`verein`.`id`) then `bundesliga`.`spiel`.`gastgeber_tore` end) AS `gegentore`,(case when (`bundesliga`.`spiel`.`gastgeber` = `bundesliga`.`verein`.`id`) then 1 else 0 end) AS `heimvorteil`,(case when (`bundesliga`.`spiel`.`gastgeber` = `bundesliga`.`verein`.`id`) then (case when (`bundesliga`.`spiel`.`gastgeber_tore` < `bundesliga`.`spiel`.`gast_tore`) then 2 when (`bundesliga`.`spiel`.`gastgeber_tore` = `bundesliga`.`spiel`.`gast_tore`) then 1 else 0 end) when (`bundesliga`.`spiel`.`gast` = `bundesliga`.`verein`.`id`) then (case when (`bundesliga`.`spiel`.`gast_tore` < `bundesliga`.`spiel`.`gastgeber_tore`) then 2 when (`bundesliga`.`spiel`.`gast_tore` = `bundesliga`.`spiel`.`gastgeber_tore`) then 1 else 0 end) end) AS `niederlage` from (`bundesliga`.`spiel` join `bundesliga`.`verein`) where ((`bundesliga`.`spiel`.`gastgeber` = `bundesliga`.`verein`.`id`) or (`bundesliga`.`spiel`.`gast` = `bundesliga`.`verein`.`id`)) order by `bundesliga`.`spiel`.`spieltag`,`bundesliga`.`spiel`.`uhrzeit`,`bundesliga`.`spiel`.`id`;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;