Taller De Bases De Datos

  • December 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Taller De Bases De Datos as PDF for free.

More details

  • Words: 195
  • Pages: 8
TALLER DE BASES DE DATOS 1. RELACIONES.

2. CONSULTAS. 2.1.Seleccionar los nombres de los países.

SELECT nombre FROM Pais;

2.2Seleccionar los nombres de los departamentos. SELECT nombre FROM Departamento;

2.3.Seleccionar los nombres de las ciudades SELECT nombre FROM Ciudad;

2.4.Seleccionar el nombre del País y sus Departamentos.

SELECT Pais.nombre, Departamento.nombre FROM Pais, Departamento WHERE Pais.IdPais=Departamento.IdPais;

2.5.Seleccionar los países con sus departamentos y estos con sus ciudades. SELECT Pais.nombre, Departamento.nombre, Ciudad.nombre FROM Pais, Departamento, Ciudad WHERE Pais.IdPAis=Departamento.IdPais and Departamento.IdDepartamento=Ciudad.IdDepartamento;

2.6Seleccionar el nombre del país y su correspondiente capital.

SELECT Pais.nombre, Ciudad.nombre FROM Pais, Ciudad WHERE Pais.IdCiudad=Ciudad.IdCiudad ORDER BY Pais.nombre, Ciudad.nombre;

2.6.Seleccionar el nombre del departamento y su correspondiente capital.

SELECT Departamento.nombre, Ciudad.nombre FROM Departamento, Ciudad WHERE Departamento.IdCiudad=Ciudad.IdCiudad ORDER BY Departamento.nombre, Ciudad.nombre;

2.7.Seleccionar el nombre de las ciudades que son capital de País.

SELECT Ciudad.nombre FROM Ciudad, Pais WHERE Ciudad.IdCiudad=Pais.IdCiudad ORDER BY Ciudad.nombre, Pais.nombre;

2.8.Seleccionar el nombre de las ciudades que son capital de departamento.

SELECT Ciudad.nombre FROM Ciudad, Departamento WHERE Ciudad.IdCiudad=Departamento.IdCiudad ORDER BY Ciudad.nombre, Departamento.nombre;

2.10 Seleccionar el nombre de las ciudades que son capital de país y a su vez de departamento.

SELECT Ciudad. nombre FROM Ciudad, Pais, Departamento WHERE Pais.IdCiudad=Ciudad.IdCiudad AND Departamento.IdCiudad=Pais.IdCiudad AND Departamento.IdCiudad=Ciudad.IdCiudad;

Related Documents

Taller Bases De Datos
April 2020 19
Taller De Bases De Datos
April 2020 12
Taller De Bases De Datos
December 2019 61
Bases De Datos
December 2019 58