-
프로그래머스 - 이름에 el이 들어가는 동물 찾기DB/프로그래머스 SQL Kit 2020. 4. 1. 00:26
문제 : https://programmers.co.kr/learn/courses/30/lessons/59047
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersSELECT ANIMAL_ID, NAME FROM ANIMAL_INS WHERE ANIMAL_TYPE= 'Dog' AND NAME LIKE '%el%' ORDER BY NAME; 'DB > 프로그래머스 SQL Kit' 카테고리의 다른 글
프로그래머스 - 입양 시각 구하기(1) (0) 2020.04.01 프로그래머스 - 없어진 기록 찾기 (0) 2020.02.17 프로그래머스 - 보호소에서 중성화한 동물 (0) 2020.02.17