Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Using the AND Operator | Advanced Data Filtering
Introduction to SQL (60/40)

bookUsing the AND Operator

メニューを表示するにはスワイプしてください

When you want to filter results using more than one column, you can chain conditions together with the AND operator in the WHERE clause.

123
SELECT name, population, region FROM country WHERE population >= 1000000 AND continent ='Europe';
copy

This query returns only the rows that meet both conditions: the country's population is at least 1000000, and it's located in Europe.

1. Which WHERE clause condition correctly filters countries with a population over 1 million and located in Europe?

2. Which SQL statement correctly uses the AND operator to filter for countries that are both in Europe and in the Western Europe region?

question mark

Which WHERE clause condition correctly filters countries with a population over 1 million and located in Europe?

正しい答えを選んでください

question mark

Which SQL statement correctly uses the AND operator to filter for countries that are both in Europe and in the Western Europe region?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 4.  1

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 4.  1
some-alt