본문 바로가기
개발자/DB

코테 SQL고득점 Kit - IS NULL 2

문제 

 

풀이 

1번문제와 마찬가지로 간단한 문제이다.

이름이 있는 animal_id를 찾으면 된다.

selec animal_id                          

from animal_ins

where name is not null

order by animal_id asc;

'개발자 > DB' 카테고리의 다른 글

[MySQL] Association, Module Summary  (0) 2022.08.09
[MySQL] What is Sequelize?  (0) 2022.08.08
MySQL 8.0 버전 root password 변경  (0) 2022.08.08
코테 SQL고득점 Kit - IS NULL 3  (0) 2022.07.17
코테 SQL고득점 Kit - IS NULL 1  (0) 2022.07.17