[프로그래머스/SQL]동물 수 구하기

gov's avatar
Nov 22, 2024
[프로그래머스/SQL]동물 수 구하기
Contents
문제풀이

문제

notion image

풀이

count(*) : animal_ins 전체 테이블의 값
SELECT count(*) from animal_ins;
Share article

goho