커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
4-3 퀴즈질문이요
[왕초보] 엑셀보다 쉬운, SQL v3
4주차
북마크
사**일
댓글
1
추천
0
조회수
8
조회수
8
답변 완료

* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.

* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.



SELECT

c.course_id ,

c.likes,

(

select c2.title from courses c2 where c2.course_id =c.course_id

)as title,

(

SELECT round(avg(c3.likes),1) from checkins c3 WHERE c3.course_id =c.course_id

)as avg_likes

FROM checkins c

order by title

select절에 들어가는 서브쿼리 퀴즈 질문입니다.


위와 같이 코딩했을 때 올바르게 나오지만


SELECT

c.user_id

c.course_id ,

c.likes,

(

select c2.title from courses c2 where c2.course_id =c.course_id

)as title,

(

SELECT round(avg(c3.likes),1) from checkins c3 WHERE c3.course_id =c.course_id

)as avg_likes

FROM checkins c

order by title

이것처럼 c.user_id 라든가 c.checkin_id를 추가했을 때

SQL Error [1064] [42000]: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.course_id ,

c.likes,

(

select c2.title from courses c2 where c2.course_id =c' at line 3

다음과같은

에러가 뜹니다.








취소
 공유
취소
댓글 0
댓글 알림
나의얼굴