Conteúdo do Curso
Introdução ao SQL
Introdução ao SQL
Usando o Operador NOT
Para cancelar a condição, você precisa usar a palavra-chave NOT
. Primeiro, vamos olhar o exemplo:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Explicação: O operador NOT
rejeita a condição aqui; portanto, ele corresponde ao continente a qualquer coisa que não seja a Ásia.
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.
Obrigado pelo seu feedback!
Usando o Operador NOT
Para cancelar a condição, você precisa usar a palavra-chave NOT
. Primeiro, vamos olhar o exemplo:
SELECT name, capital FROM country WHERE NOT continent='Asia';
Explicação: O operador NOT
rejeita a condição aqui; portanto, ele corresponde ao continente a qualquer coisa que não seja a Ásia.
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.
Obrigado pelo seu feedback!