Skip to content

Instantly share code, notes, and snippets.

@marcoschneider
Last active April 14, 2018 21:10
Show Gist options
  • Save marcoschneider/457a6d0409983db88e57034f8cba608d to your computer and use it in GitHub Desktop.
Save marcoschneider/457a6d0409983db88e57034f8cba608d to your computer and use it in GitHub Desktop.
WM Teams SQL Dump (German)
CREATE TABLE teams(
id int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
groupLetter CHAR(1) NOT NULL,
teamName VARCHAR(100) NOT NULL
);
INSERT INTO teams (groupLetter, teamName) VALUES
('A', 'Russland'),
('A', 'Saudi Arabien'),
('A', 'Ägypten'),
('A', 'Uruguay'),
('B', 'Portugal'),
('B', 'Spanien'),
('B', 'Marokko'),
('B', 'Iran'),
('C', 'Frankreich'),
('C', 'Australien'),
('C', 'Peru'),
('C', 'Dänemark'),
('D', 'Argentinien'),
('D', 'Island'),
('D', 'Kroatien'),
('D', 'Nigeria'),
('E', 'Brasilien'),
('E', 'Schweiz'),
('E', 'Costa Rica'),
('E', 'Serbien'),
('F', 'Deutschland'),
('F', 'Mexiko'),
('F', 'Schweden'),
('F', 'Südkorea'),
('G', 'Belgien'),
('G', 'Panama'),
('G', 'Tunesien'),
('G', 'England'),
('H', 'Polen'),
('H', 'Senegal'),
('H', 'Kolumbien'),
('H', 'Japan');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment