-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgames.sql
More file actions
40 lines (35 loc) · 1.33 KB
/
games.sql
File metadata and controls
40 lines (35 loc) · 1.33 KB
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
-- Copyright 2026 Columnar Technologies Inc.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
CREATE DATABASE IF NOT EXISTS `demo`;
USE `demo`;
DROP TABLE IF EXISTS `games`;
CREATE TABLE `games` (
`id` INT UNSIGNED,
`name` VARCHAR(100),
`inventor` VARCHAR(100),
`year` YEAR,
`min_age` TINYINT UNSIGNED,
`min_players` TINYINT UNSIGNED,
`max_players` TINYINT UNSIGNED,
`list_price` DECIMAL(5,2),
PRIMARY KEY (`id`)
);
INSERT INTO `games`
(`id`, `name`, `inventor`, `year`, `min_age`, `min_players`, `max_players`, `list_price`)
VALUES
(1, 'Monopoly', 'Elizabeth Magie', 1903, 8, 2, 6, 19.99),
(2, 'Scrabble', 'Alfred Mosher Butts', 1938, 8, 2, 4, 17.99),
(3, 'Clue', 'Anthony E. Pratt', 1944, 8, 2, 6, 9.99),
(4, 'Candy Land', 'Eleanor Abbott', 1948, 3, 2, 4, 7.99),
(5, 'Risk', 'Albert Lamorisse', 1957, 10, 2, 5, 29.99);