Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ The COUNT() Function | Section
SQL Fundamentals
セクション 1.  34
single

single

bookThe COUNT() Function

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

COUNT() is a function that allows you to count rows in a table or count how many rows match certain criteria.

Let's see an example:

12
SELECT COUNT(name) FROM country;
copy

To count the total number of rows in the table, we can use the following syntax:

12
SELECT COUNT(*) FROM country;
copy
タスク

スワイプしてコーディングを開始

Write an SQL query to retrieve the number of rows from the country table where the continent is 'Asia' with a population of over 1000000.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

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

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

セクション 1.  34
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt