-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScript SQL.txt
More file actions
73 lines (63 loc) · 1.71 KB
/
Script SQL.txt
File metadata and controls
73 lines (63 loc) · 1.71 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
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
INSERT INTO sistemas_consola (idConsola, nombreConsola, marcaConsola)
VALUES
(1, 'Playstation 3', 'Sony'),
(2, 'Playstation 4', 'Sony'),
(3, 'Playstation 5', 'Sony'),
(4, 'Xbox Series X', 'Microsoft'),
(5, 'Xbox One', 'Microsoft'),
(6, 'Switch', 'Nintendo'),
(7, 'Wii', 'Nintendo'),
(8, 'Wii U', 'Nintendo'),
(9, '3DS', 'Nintendo');
INSERT INTO sistemas_distribucion (idDistribucion, localidadDistribucion, siglaDistribucion)
VALUES
(1, 'Europea', 'EU'),
(2, 'Americana', 'US'),
(3, 'Japonesa', 'JP'),
(4, 'Global', 'GL');
INSERT INTO sistemas_clasificacion (idClasificacion, Distribucion_id, descripcionClasificacion)
VALUES
(1, 2, 'E'),
(2, 2, 'E+10'),
(3, 2, 'T'),
(4, 2, 'M'),
(5, 2, 'A'),
(6, 2, 'C'),
(7, 2, 'RP');
INSERT INTO sistemas_clasificacion (idClasificacion, Distribucion_id, descripcionClasificacion)
VALUES
(8, 1, '3'),
(9, 1, '7'),
(10, 1, '12'),
(11, 1, '16'),
(12, 1, '18');
INSERT INTO sistemas_clasificacion (idClasificacion, Distribucion_id, descripcionClasificacion)
VALUES
(13, 3, 'A'),
(14, 3, 'B'),
(15, 3, 'C'),
(16, 3, 'D'),
(17, 3, 'Z');
INSERT INTO sistemas_clasificacion (idClasificacion, Distribucion_id, descripcionClasificacion)
VALUES
(18, 4, '3'),
(19, 4, '7'),
(20, 4, '12'),
(21, 4, '16'),
(22, 4, '18');
INSERT INTO sistemas_estado (idEstado, nombreEstado)
VALUES
(1, 'Activo'),
(2, 'Descontinuado');
INSERT INTO sistemas_descripcion (idDescripcion, detallesDescripcion) VALUES
(1, 'COLLECTOR EDITION'),
(2, 'COLLECTION'),
(3, 'DAY ONE EDITION'),
(4, 'DELUXE EDITION'),
(5, 'DIGITAL EDITION'),
(6, 'GAME OF THE YEAR EDITION'),
(7, 'LIMITED EDITION'),
(8, 'SOBRE'),
(9, 'SPECIAL EDITION'),
(10, 'STEALBOOK'),
(11, 'VR');