-
Notifications
You must be signed in to change notification settings - Fork 0
/
BD-integrador-oradores.sql
38 lines (27 loc) · 1.44 KB
/
BD-integrador-oradores.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
CREATE TABLE oradores
(
id_orador INT NOT NULL AUTO_INCREMENT,
nombre VARCHAR(20) NOT NULL,
apellido VARCHAR(20) NOT NULL,
mail VARCHAR(50) NOT NULL,
tema VARCHAR(200) NOT NULL,
fecha_alta DATE NOT NULL,
PRIMARY KEY (id_orador),
UNIQUE INDEX mail (mail)
)
COLLATE='latin1_spanish_ci'
;
ALTER TABLE oradores AUTO_INCREMENT=0;
DESCRIBE oradores;
INSERT INTO oradores (nombre,apellido,mail,tema,fecha_alta) VALUES
('Alan','Buscaglia','[email protected]','Redefiniendo el Codigo!','2023-10-12'),
('Christian','Villegas','[email protected]','Domina React! Guia Practica','2023-10-19'),
('Victoria','Demkoff','[email protected]','Como crear un sitio web efectivo','2023-03-01'),
('Luisina','de Paula','[email protected]','Conquistando el Backend: MasterClass de Java','2023-08-31'),
('Isaac','Pavon Ruiz','[email protected]','Crea con propia API-Rest con NodeJS desde cero','2023-08-17'),
('Pedro','Placencia','[email protected]','Despliega tu aplicacion SIN FALLOS en GitHub','2023-07-13'),
('Johnnie','Tirado','[email protected]','Desarrollando fullstack con NextJS','2023-12-07'),
('Carlos','Gauto','[email protected]','Test Automation para developers','2023-11-23'),
('Lorena','Gonzalez','[email protected]','Como crear una landing page','2023-04-12'),
('Antonio','Tempestelli','[email protected]','Aprende a desarrollar de Cero (HTML y CSS)','2023-05-10');
SELECT * FROM oradores;