Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cities次の情報を含む表があります。
cities
name, country, population, capital, shape
特定の 2 つの国 (アルゼンチンとメキシコ) の各都市の人口の平均を、合計せずに取得する必要があります。
両方の平均クエリを 1 つで実行する方法はありますか?
これができるかできないかだけが気になります。
GROUP BY都市と国では、次のようなものを使用できるはずです。
GROUP BY
select city, country, avg(population) AvgPop from yourtable where country in ('Argentina', 'Mexico') group by city, country