[프로그래머스/SQL]이름에 el이 들어가는 동물 찾기

gov's avatar
Nov 21, 2024
[프로그래머스/SQL]이름에 el이 들어가는 동물 찾기
Contents
문제풀이

문제

notion image

풀이

where 조건을 적용할 테이블명 like 조건
and 조건이 모두 만족할 때
SELECT animal_id, name from animal_ins where name like '%el%' and animal_type like 'dog' order by name;
Share article

goho