-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataBase.txt
73 lines (56 loc) · 1.37 KB
/
DataBase.txt
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
Base de datos
-- Base de datos: `estudiantespy`
-- Estructura de tabla para la tabla `estudiantes`
--
CREATE TABLE `estudiantes` (
`id` int(11) NOT NULL,
`nombre` varchar(100) NOT NULL,
`edad` int(11) DEFAULT NULL,
`carrera` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `estudiantes`
--
-- Estructura de tabla para la tabla `notas`
--
CREATE TABLE `notas` (
`id` int(11) NOT NULL,
`id_estudiante` int(11) DEFAULT NULL,
`materia` varchar(100) NOT NULL,
`nota` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `notas`
--
--
-- Indices de la tabla `estudiantes`
--
ALTER TABLE `estudiantes`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `notas`
--
ALTER TABLE `notas`
ADD PRIMARY KEY (`id`),
ADD KEY `id_estudiante` (`id_estudiante`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `estudiantes`
--
ALTER TABLE `estudiantes`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- AUTO_INCREMENT de la tabla `notas`
--
ALTER TABLE `notas`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `notas`
--
ALTER TABLE `notas`
ADD CONSTRAINT `notas_ibfk_1` FOREIGN KEY (`id_estudiante`) REFERENCES `estudiantes` (`id`);
COMMIT;