Skip to content

Commit 5e9f3be

Browse files
committed
Curso completo en vídeo
1 parent eb8347b commit 5e9f3be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+212
-138
lines changed

01_Reading/00_comments.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
COMENTAROS
3-
Lección 10.1:
3+
Lección 10.1: https://youtu.be/OuJerKzV5T0?t=7512
44
*/
55

66
-- Comentario en una lína

01_Reading/01_select.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
SELECT
3-
Lección 8: https://youtube.com/@mouredev
3+
Lección 8: https://youtu.be/OuJerKzV5T0?t=5618
44
*/
55

66
-- Obtiene todos los datos de la tabla "users"

01_Reading/02_distinct.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
DISTINCT
3-
Lección 9.1: https://youtube.com/@mouredev
3+
Lección 9.1: https://youtu.be/OuJerKzV5T0?t=6089
44
*/
55

66
-- Obtiene todos los datos distintos entre sí de la tabla "users"

01_Reading/03_where.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
WHERE
3-
Lección 9.2: https://youtube.com/@mouredev
3+
Lección 9.2: https://youtu.be/OuJerKzV5T0?t=6384
44
*/
55

66
-- Filtra todos los datos de la tabla "users" con edad igual a 15

01_Reading/04_order_by.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
ORDER BY
3-
Lección 9.3: https://youtube.com/@mouredev
3+
Lección 9.3: https://youtu.be/OuJerKzV5T0?t=6592
44
*/
55

66
-- Ordena todos los datos de la tabla "users" por edad (ascendente por defecto)

01_Reading/05_like.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
LIKE
3-
Lección 9.4: https://youtube.com/@mouredev
3+
Lección 9.4: https://youtu.be/OuJerKzV5T0?t=6894
44
*/
55

66
-- Obtiene todos datos de la tabla "users" que contienen un email con el texto "gmail.com" en su parte final

01_Reading/06_and_or_not.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
NOT, AND, OR
3-
Lección 9.5: https://youtube.com/@mouredev
3+
Lección 9.5: https://youtu.be/OuJerKzV5T0?t=7194
44
*/
55

66
-- Obtiene todos datos de la tabla "users" con email distinto a [email protected]

01_Reading/07_limit.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
LIMIT
3-
Lección 9.6: https://youtube.com/@mouredev
3+
Lección 9.6: https://youtu.be/OuJerKzV5T0?t=7395
44
*/
55

66
-- Obtiene las 3 primeras filas de la tabla "users"

01_Reading/08_null.sql

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
NULL
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.2: https://youtu.be/OuJerKzV5T0?t=7615
44
*/
55

66
-- Obtiene todos datos de la tabla "users" de la tabla "users" con email nulo
@@ -12,5 +12,10 @@ SELECT * FROM users WHERE email IS NOT NULL;
1212
-- Obtiene todos datos de la tabla "users" de la tabla "users" con email no nulo y edad igual a 15
1313
SELECT * FROM users WHERE email IS NOT NULL AND age = 15;
1414

15+
/*
16+
IFNULL
17+
Lección 10.14: https://youtu.be/OuJerKzV5T0?t=10023
18+
*/
19+
1520
-- Obtiene el nombre, apellido y edad de la tabla "users", y si la edad es nula la muestra como 0
1621
SELECT name, surname, IFNULL(age, 0) AS age FROM users;

01_Reading/09_min_max.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
MIN MAX
3-
Clase 3: https://twitch.tv/videos/1953432950
2+
MIN, MAX
3+
Lección 10.3: https://youtu.be/OuJerKzV5T0?t=7834
44
*/
55

66
-- Obtiene el valor menor del campo edad de la tabla "users"

01_Reading/10_count.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
COUNT
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.4: https://youtu.be/OuJerKzV5T0?t=8043
44
*/
55

66
-- Cuenta cuantas filas contiene la tabla "users"

01_Reading/11_sum.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
SUM
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.5: https://youtu.be/OuJerKzV5T0?t=8128
44
*/
55

66
-- Suma todos los valores del campo edad de la tabla "users"

01_Reading/12_avg.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
AVG
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.6: https://youtu.be/OuJerKzV5T0?t=8293
44
*/
55

66
-- Obitne la media de edad de la tabla "users"

01_Reading/13_in.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
IN
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.7: https://youtu.be/OuJerKzV5T0?t=8335
44
*/
55

66
-- Ordena todos los datos de la tabla "users" con nombre igual a brais y sara

01_Reading/14_between.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
BETWEEN
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.8: https://youtu.be/OuJerKzV5T0?t=8559
44
*/
55

66
-- Ordena todos los datos de la tabla "users" con edad comprendida entre 20 y 30

01_Reading/15_alias.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
ALIAS
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.9: https://youtu.be/OuJerKzV5T0?t=8667
44
*/
55

66
-- Establece el alias 'Fecha de inicio en programación' a la columna init_date

01_Reading/16_concat.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
CONCAT
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.10: https://youtu.be/OuJerKzV5T0?t=8826
44
*/
55

66
-- Concatena en una sola columa los campos nombre y apellido

01_Reading/17_group_by.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
GROUP BY
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.11: https://youtu.be/OuJerKzV5T0?t=8960
44
*/
55

66
-- Agrupa los resultados por edad diferente

01_Reading/18_having.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
HAVING
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.12: https://youtu.be/OuJerKzV5T0?t=9265
44
*/
55

66
-- Cuenta cuantas filas contienen un dato no nulo en el campo edad de la tabla "users" mayor que 3

01_Reading/19_case.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
CASE
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 10.13: https://youtu.be/OuJerKzV5T0?t=9486
44
*/
55

66
-- Obtiene todos los datos de la tabla "users" y establece condiciones de visualización de cadenas de texto según el valor de la edad

02_Writing/01_insert_into.sql 02_Writing/01_insert.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
INSERT INTO
3-
Clase 3: https://twitch.tv/videos/1953432950
2+
INSERT
3+
Lección 11.1: https://youtu.be/OuJerKzV5T0?t=10370
44
*/
55

66
-- Inserta un registro con identificador, nombre y apellido en la tabla "users"

02_Writing/02_update.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
UPDATE
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 11.2: https://youtu.be/OuJerKzV5T0?t=10621
44
*/
55

66
-- Estable el valor 21 para la edad del registro de la tabla "users" con identificador igual a 11

02_Writing/03_delete.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
DELETE
3-
Clase 3: https://twitch.tv/videos/1953432950
3+
Lección 11.3: https://youtu.be/OuJerKzV5T0?t=10920
44
*/
55

66
-- Elimina el registro de la tabla "users" con identificador igual a 11

03_Database/01_create_database.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
CREATE DATABASE
3-
Clase 4: https://twitch.tv/videos/1959296112
3+
Lección 12.1: https://youtu.be/OuJerKzV5T0?t=11064
44
*/
55

66
-- Crea una base de datos llamada "test"

03_Database/02_drop_database.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
DROP DATABASE
3-
Clase 4: https://twitch.tv/videos/1959296112
3+
Lección 12.2: https://youtu.be/OuJerKzV5T0?t=11180
44
*/
55

66
-- Elimina la base de datos llamada "test"

04_Tables/01_create_table.sql

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
CREATE TABLE
3-
Clase 4: https://twitch.tv/videos/1959296112
3+
Lección 13.1: https://youtu.be/OuJerKzV5T0?t=11292
44
*/
55

66
-- Crea una tabla llamada "persons" con nombre de columna (atributos) de tipo int, varchar y date
@@ -16,6 +16,11 @@ CREATE TABLE persons (
1616
CONSTRAINTS: Restricciones
1717
*/
1818

19+
/*
20+
NOT NULL
21+
Lección 13.2: https://youtu.be/OuJerKzV5T0?t=11619
22+
*/
23+
1924
-- NOT NULL: Obliga a que el campo id posea siempre un valor no nulo
2025
CREATE TABLE persons2 (
2126
id int NOT NULL,
@@ -25,6 +30,11 @@ CREATE TABLE persons2 (
2530
created date
2631
);
2732

33+
/*
34+
UNIQUE
35+
Lección 13.3: https://youtu.be/OuJerKzV5T0?t=11787
36+
*/
37+
2838
-- UNIQUE: Obliga a que el campo id posea valores diferentes
2939
CREATE TABLE persons3 (
3040
id int NOT NULL,
@@ -35,6 +45,11 @@ CREATE TABLE persons3 (
3545
UNIQUE(id)
3646
);
3747

48+
/*
49+
PRIMARY KEY
50+
Lección 13.4: https://youtu.be/OuJerKzV5T0?t=11911
51+
*/
52+
3853
-- PRIMARY KEY: Establece el campo id como clave primaria para futuras relaciones con otras tablas
3954
CREATE TABLE persons4 (
4055
id int NOT NULL,
@@ -46,6 +61,11 @@ CREATE TABLE persons4 (
4661
PRIMARY KEY(id)
4762
);
4863

64+
/*
65+
CHECK
66+
Lección 13.5: https://youtu.be/OuJerKzV5T0?t=12121
67+
*/
68+
4969
-- CHECK: Establece que el campo age sólo podrá contener valores mayores o iguales a 18
5070
CREATE TABLE persons5 (
5171
id int NOT NULL,
@@ -58,6 +78,11 @@ CREATE TABLE persons5 (
5878
CHECK(age>=18)
5979
);
6080

81+
/*
82+
DEFAULT
83+
Lección 13.6: https://youtu.be/OuJerKzV5T0?t=12243
84+
*/
85+
6186
-- DEFAULT: Establece un valor por defecto en el campo created correspondiente a la fecha del sistema
6287
CREATE TABLE persons6 (
6388
id int NOT NULL,
@@ -70,6 +95,11 @@ CREATE TABLE persons6 (
7095
CHECK(age>=18)
7196
);
7297

98+
/*
99+
AUTO INCREMENT
100+
Lección 13.7: https://youtu.be/OuJerKzV5T0?t=12362
101+
*/
102+
73103
-- AUTO_INCREMENT: Indica que el campo id siempre se va a incrementar en 1 con cada nuevo inserto
74104
CREATE TABLE persons7 (
75105
id int NOT NULL AUTO_INCREMENT,

04_Tables/02_drop_table.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
DROP TABLE
3-
Clase 4: https://twitch.tv/videos/1959296112
3+
Lección 13.8: https://youtu.be/OuJerKzV5T0?t=12412
44
*/
55

66
-- Elimina la tabla llamada "persons8"

04_Tables/03_alter_table.sql

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,40 @@
11
/*
22
ALTER TABLE
3-
Clase 4: https://twitch.tv/videos/1959296112
3+
Lección 13.9: https://youtu.be/OuJerKzV5T0?t=12461
4+
*/
5+
6+
/*
7+
ADD
8+
Lección 13.10: https://youtu.be/OuJerKzV5T0?t=12578
49
*/
510

611
-- ADD: Añade un nuevo atributo surname a la tabla "persons8"
712
ALTER TABLE persons8
813
ADD surname varchar(150);
914

15+
/*
16+
RENAME COLUMN
17+
Lección 13.11: https://youtu.be/OuJerKzV5T0?t=12624
18+
*/
19+
1020
-- RENAME COLUMN: Renombra el atributo surname a description en la tabla "persons8"
1121
ALTER TABLE persons8
1222
RENAME COLUMN surname TO description;
1323

24+
/*
25+
MODIFY COLUMN
26+
Lección 13.12: https://youtu.be/OuJerKzV5T0?t=12675
27+
*/
28+
1429
-- MODIFY COLUMN: Modifica el tipo de dato del atributo description en la tabla "persons8"
1530
ALTER TABLE persons8
1631
MODIFY COLUMN description varchar(250);
1732

33+
/*
34+
DROP COLUMN
35+
Lección 13.13: https://youtu.be/OuJerKzV5T0?t=12712
36+
*/
37+
1838
-- DROP COLUMN: Elimina el atributo description en la tabla "persons8"
1939
ALTER TABLE persons8
2040
DROP COLUMN description;

0 commit comments

Comments
 (0)