Contenido del Curso
Introducción a SQL
Introducción a SQL
Uso del operador NOT
Para cancelar la condición, necesitas usar la palabra clave NOT
. Primero, veamos el ejemplo:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Explicación: El operador NOT
rechaza la condición aquí; por lo tanto, coincide el continente con cualquier cosa que no sea Asia.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the name
and capital
columns from the country
table (please retrieve these columns in this order). These countries must be not from the 'South America' continent
.
Note
Pay attention to the fact that the names of the continents begin with a capital letter and not a lowercase one; this is very important.
¡Gracias por tus comentarios!
Uso del operador NOT
Para cancelar la condición, necesitas usar la palabra clave NOT
. Primero, veamos el ejemplo:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Explicación: El operador NOT
rechaza la condición aquí; por lo tanto, coincide el continente con cualquier cosa que no sea Asia.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the name
and capital
columns from the country
table (please retrieve these columns in this order). These countries must be not from the 'South America' continent
.
Note
Pay attention to the fact that the names of the continents begin with a capital letter and not a lowercase one; this is very important.
¡Gracias por tus comentarios!
Uso del operador NOT
Para cancelar la condición, necesitas usar la palabra clave NOT
. Primero, veamos el ejemplo:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Explicación: El operador NOT
rechaza la condición aquí; por lo tanto, coincide el continente con cualquier cosa que no sea Asia.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the name
and capital
columns from the country
table (please retrieve these columns in this order). These countries must be not from the 'South America' continent
.
Note
Pay attention to the fact that the names of the continents begin with a capital letter and not a lowercase one; this is very important.
¡Gracias por tus comentarios!
Para cancelar la condición, necesitas usar la palabra clave NOT
. Primero, veamos el ejemplo:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Explicación: El operador NOT
rechaza la condición aquí; por lo tanto, coincide el continente con cualquier cosa que no sea Asia.
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to get the name
and capital
columns from the country
table (please retrieve these columns in this order). These countries must be not from the 'South America' continent
.
Note
Pay attention to the fact that the names of the continents begin with a capital letter and not a lowercase one; this is very important.