목록SQL 문제 (6)
거의 알고리즘 일기장
https://programmers.co.kr/learn/courses/30/parts/17047 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 루시와 엘라찾기 1 2 3 4 select ANIMAL_ID, NAME, SEX_UPON_INTAKE from ANIMAL_INS where NAME in ( 'Lucy', 'Ella', 'Pickle', 'Rogan', 'Sabrina', 'Mitty') order by ANIMAL_ID http://colorscripter.com/info#e" target="_blank" style="color:#4f4..
https://programmers.co.kr/learn/challenges?selected_part_id=17046 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 없어진 기록찾기 1 2 3 4 5 select aout.ANIMAL_ID, aout.NAME from ANIMAL_OUTS as aout left join ANIMAL_INS as ain on aout.ANIMAL_ID = ain.ANIMAL_ID where ain.ANIMAL_ID is null http://colorscripter.com/info#e" target="_blank" st..
https://programmers.co.kr/learn/courses/30/parts/17045 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 이름이 없는 동물의 아이디 1 2 3 4 5 select ANIMAL_ID from ANIMAL_INS where NAME is NULL http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 2. 이름이 있는 동물의 아이디 1 2 3 4 select ANIMAL_ID from ANIMAL_INS ..
https://programmers.co.kr/learn/challenges?selected_part_id=17044 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 고양이와 개는 몇마리 있을까? 1 2 3 4 select ANIMAL_TYPE, count(ANIMAL_TYPE) as count from ANIMAL_INS group by ANIMAL_TYPE order by ANIMAL_TYPE http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:whit..
https://programmers.co.kr/learn/challenges?selected_part_id=17043 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 최댓값 구하기 1 2 3 4 select DATETIME as '시간' from ANIMAL_INS order by DATETIME desc limit 1 http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 2. 최솟값 구하기 1 2 3 4 select DATETIME as ..
https://programmers.co.kr/learn/courses/30/parts/17042 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 1. 모든 레코드 조회하기 1 2 3 select * from ANIMAL_INS order by ANIMAL_ID asc http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs 2. 역순 정렬하기 1 2 3 select Name, DATETIME from ANIMAL_INS order by ANIMAL..