TIA 2: Implementación y manipulación de bases de datos
Scrip:
select Numero_de_habitaciones, Tamaño_en_m2, Tipo
from Propiedad where(Numero_de_habitaciones > '3' and Tamaño_en_m2 > '68') and Tipo = 'casa'
select * from Pago where Cod_propiedad in
(
Select Cod_propiedad from Propiedad where Dirección like 'Calle 25 #12-12'
)
select * from Propiedad where Num_contrato4 in
(
Select Num_contrato from Contrato where Fecha_de_inicio < '2016-01-01'
)
Select * from Cliente where Cédula_cliente in
(
Select Cédula_cliente1 from Propiedad where barrio like 'Poblado' and Cédula_dueño1 in
(
select Cédula_dueño from Dueño where Nombre like 'Anibal Ruiz' or Nombre like 'Jorge Pérez'
)
)
from Propiedad where(Numero_de_habitaciones > '3' and Tamaño_en_m2 > '68') and Tipo = 'casa'
select * from Pago where Cod_propiedad in
(
Select Cod_propiedad from Propiedad where Dirección like 'Calle 25 #12-12'
)
select * from Propiedad where Num_contrato4 in
(
Select Num_contrato from Contrato where Fecha_de_inicio < '2016-01-01'
)
Select * from Cliente where Cédula_cliente in
(
Select Cédula_cliente1 from Propiedad where barrio like 'Poblado' and Cédula_dueño1 in
(
select Cédula_dueño from Dueño where Nombre like 'Anibal Ruiz' or Nombre like 'Jorge Pérez'
)
)
Video:
Reflexión:
SQL es un lenguaje muy fácil y cómodo para
crear las bases de datos. La importancia de aprenderlo es enorme porque es uno
de los lenguajes estructurados de consulta con mayor demanda laboral. En esta
actividad aprendí demasiadas cosas y cada vez que lograba ejecutar una orden de
forma exitosa, la sensación era gratificante y emocionante, incluso me animo a
consultar mucho más en diferentes fuentes.
Comentarios
Publicar un comentario