전체 글

DB/SQL오답노트

[DB/SQL오답노트/HackerRank] Average Population of Each Continent

1.문제 Given the CITY and COUNTRY tables, query the names of all the continents (COUNTRY.Continent) and their respective average city populations (CITY.Population) rounded down to the nearest integer. Note: CITY.CountryCode and COUNTRY.Code are matching key columns. Input Format The CITY and COUNTRY tables are described as follows: 2.내 풀이 SELECT COUNTRY.Continent, trunc(avg(CITY.population)) FROM ..

뉴렉처/DB

[뉴렉처/DB] ★SQL DDL DML 2023.08.08

보호되어 있는 글입니다.

뉴렉처/DB

[뉴렉처/DB] ★오라클DB의 탄생과 SQL 2023.08.07

보호되어 있는 글입니다.

각시탈코더
각시탈코더