Taller Bases De Datos

  • Uploaded by: gloria
  • 0
  • 0
  • April 2020
  • 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 Bases De Datos as PDF for free.

More details

  • Words: 220
  • Pages: 10
TALLER DE BASES DE DATOS

1. Seleccionar los nombres de los Países. SELECT Nombre FROM País;

2. Seleccionar los nombres del Depto. SELECT Nombre FROM Depto;

3. Seleccionar los nombres de las Ciudad. SELECT Nombre FROM Ciudad;

4. Seleccionar los nombre del País y sus Depto SELECT Pais.Nombre, Depto. Nombre FROM País, Depto WHERE Pais.IdPais=Depto.IdPais;

5. Seleccionar los nombre de los país con sus Depto y estos con sus Ciudades. SELECT Pais.Nombre, Depto. Nombre, Ciudad. Nombre FROM País, Depto, Ciudad WHERE Pais.IdPais=Depto.IdPais AND Depto.IdDepto=Ciudad.IdDepto;

6. Seleccionar el nombre del país y su correspondiente capital. SELECT Pais.Nombre, Ciudad. Nombre FROM País, Ciudad WHERE Pais.IdCiudad=Ciudad.IdCiudad ORDER BY Pais.Nombre, Ciudad. Nombre;

7. Seleccionar el nombre del Depto y su correspondiente capital. SELECT Depto. Nombre, Ciudad. Nombre FROM Depto, Ciudad WHERE Depto.IdCiudad=Ciudad.IdCiudad ORDER BY Depto. Nombre, Ciudad. Nombre;

8. Seleccionar el nombre de las Ciudades que son capital del país. SELECT Ciudad. Nombre, Pais.Nombre FROM Ciudad, País WHERE Ciudad.IdCiudad=Pais.IdCiudad ORDER BY Ciudad. Nombre, Pais.Nombre;

9. Seleccionar el nombre de las ciudades que son capital del Depto. SELECT Ciudad. Nombre FROM Ciudad, Depto WHERE Ciudad.IdCiudad=Depto.IdCiudad ORDER BY Ciudad. Nombre

10.Seleccionar el nombre de las ciudades que son capital del país y a su vez del Depto. SELECT Ciudad. Nombre FROM Ciudad, País, Depto WHERE Ciudad.IdCiudad=Pais.IdCiudad AND Ciudad.IdCiudad=Depto.IdCiudad AND Ciudad.IdCiudad=Pais.IdCiudad ORDER BY Ciudad.Nombre, Pais.Nombre, Depto.Nombre

RELACIÒN

Related Documents


More Documents from ""

November 2019 54
June 2020 21
5 Puestos Tipo.docx
December 2019 61
Energia
May 2020 22
June 2020 21