-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab4.sql
65 lines (48 loc) · 1.48 KB
/
lab4.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
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
-- use laboratorio;
-- select * from clientes_neptuno;
-- select NombreCompania,Ciudad,Pais from clientes_neptuno
-- order by NombreCompania;
-- select NombreCompania,Ciudad,Pais from clientes_neptuno
-- order by Pais, ciudad;
-- select NombreCompania,Ciudad,Pais from clientes_neptuno
-- order by Pais
-- limit 10;
-- select NombreCompania,Ciudad,Pais from clientes_neptuno
-- order by Pais
-- limit 5 offset 10;
-- select * from nacimientos
-- where EDAD_MADRE < 18
-- order by EDAD_MADRE;
-- select * from nacimientos
-- where EDAD_MADRE = EDAD_PADRE;
-- select * from nacimientos
-- where EDAD_PADRE-EDAD_MADRE > 40;
-- select * from clientes_neptuno
-- where Pais='Argentina';
-- select * from clientes_neptuno
-- where Pais not like 'Argentina'
-- order by Pais;
-- select * from nacimientos
-- where SEMANAS < 30
-- order by SEMANAS desc;
-- select * from nacimientos
-- where SEXO='Femenino' and
-- ESTADO_CIVIL_MADRE='Soltera' and
-- EDAD_MADRE>40 and
-- NACIONALIDAD='Extranjera';
-- Select * from clientes_neptuno
-- where Pais='Argentina'or Pais='Brasil' or Pais='Venezuela'
-- order by Pais, Ciudad;
-- select * from nacimientos
-- where SEMANAS between 20 and 25
-- order by SEMANAS;
-- select * from nacimientos
-- where COMUNA in(1101, 3201,
-- 5605, 8108, 9204, 13120, 15202)
-- order by COMUNA;
-- select * from clientes_neptuno
-- where IDCliente like 'C%';
-- select * from clientes_neptuno
-- where Ciudad like 'B____';
-- select * from nacimientos
-- where HIJOS_TOTAL > 10;