Contenido del Curso
Introducción a SQL
Introducción a SQL
Uso del operador OR
El operador OR
se utiliza para filtrar registros basados en más de una condición, como si deseas devolver todos los países de Asia pero también aquellos de Europa:
Veamos el ejemplo:
SELECT name, population, continent, region FROM country WHERE continent='Asia' OR continent='Europe';
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the name
of the countries that are from 'Asia' or 'North America' continent.
Note
Note that
north america
is not the same asNorth America
, andasia
is not the same asAsia
. Be careful and write correctly:North America
andAsia
.
¡Gracias por tus comentarios!
Uso del operador OR
El operador OR
se utiliza para filtrar registros basados en más de una condición, como si deseas devolver todos los países de Asia pero también aquellos de Europa:
Veamos el ejemplo:
SELECT name, population, continent, region FROM country WHERE continent='Asia' OR continent='Europe';
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the name
of the countries that are from 'Asia' or 'North America' continent.
Note
Note that
north america
is not the same asNorth America
, andasia
is not the same asAsia
. Be careful and write correctly:North America
andAsia
.
¡Gracias por tus comentarios!