[TIL] MySQL Practice Problems Part 2
Practice Problems - Programmers Lv.2
HAVING
-- find the number of animals with the same name
select name, count(*) as count from animal_ins
where name is not null
group by name
having count(*) >= 2
order by name
-- find the average rental duration
s...
siwonlog.hashnode.dev2 min read