반응형
반응형
문제 난이도 Level 4 정리 group by 인자로 rest_id만 주었는데, 그랬더니 'not a GROUP BY expression'이라며 오류가 났다. group by에 집계함수를 사용하려면 select 절의 인자에서 집계 함수를 쓰는 컬럼을 제외한 모든 컬럼들을 group by의 인자로 써주어야 한다고 한다. 풀이 select a.rest_id, a.rest_name, a.food_type, a.favorites, a.address, round(avg(b.review_score),2) score from rest_info a, rest_review b where a.rest_id = b.rest_id and a.address like '서울%' group by a.rest_id, a.rest_..
https://school.programmers.co.kr/learn/courses/30/lessons/164673 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 난이도 Level 1 정리 MySQL에서는 특정 형식으로 date를 출력하기 위해 date_format 을 사용한다. Oracle에서는 to_char 로 문자열 형식으로 변환한 후 지정한 인자의 형식대로 출력한다. 풀이 MySQL select a.title, a.board_id, b.reply_id, b.writer_id, b.contents, date_format(b.created_date,'..