본문 바로가기

algorithm

[programmers] MySQL - Lv.2 이름에 el이 들어가는 동물 찾기 (string, date)

문제

 

 

 

풀이
select animal_id, name from animal_ins 
where animal_type = 'Dog' and name like '%el%' order by name;