๋ฐ์ํ
https://school.programmers.co.kr/learn/courses/30/lessons/298516
๋ฌธ์
FISH_INFO ํ
์ด๋ธ์์ 2021๋
๋์ ์ก์ ๋ฌผ๊ณ ๊ธฐ ์๋ฅผ ์ถ๋ ฅํ๋ SQL ๋ฌธ์ ์์ฑํด์ฃผ์ธ์.
์ด ๋ ์ปฌ๋ผ๋ช
์ 'FISH_COUNT' ๋ก ์ง์ ํด์ฃผ์ธ์.
ํ์ด
select count(ID) as FISH_COUNT
from FISH_INFO
where year(TIME)='2021'
group by year(TIME)
๋ฐ์ํ