SELECT * from (
select Id ,(select id,count(Student) stucnt from user group by Id) ReplCnt from user) user
어떻게 고쳐야 제대로 나올까요?
select Id ,(select id,count(Student) stucnt from user group by Id) ReplCnt from user) user select 구문에서 서브쿼리를 쓸때 컬럼은 하나만 불러 올 수 있습니다. id, count(Student) 따로 불러오셔야 합니다.