[SQL] Revising Aggregations - The Sum Function
795 ワード
✅ Revising Aggregations - The Sum Function
📝 質問する
Query the total population of all cities in
CITY
where District is California.Input Format
The CITY
table is described as follows:💻 に答える
SELECT SUM(POPULATION)
FROM CITY
WHERE DISTRICT = 'California';
Reference
この問題について([SQL] Revising Aggregations - The Sum Function), 我々は、より多くの情報をここで見つけました https://velog.io/@revudn46/Revising-Aggregations-The-Sum-Functionテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol