오류 내용)
ORA-00979: GROUP BY 표현식이 아닙니다
오류 상황)
select *
from table
where 1=1
group by colum1, column2
해결)
group by 에 있는 컬럼을 select 구문에 모두 적어야한다.
라고 하지만.. 아래 쿼리의 경우 정상 동작했다.
select count(*)
from table
where 1=1
group by colum1, column2
select column1
from table
where 1=1
group by colum1, column2
select column1, column2
from table
where 1=1
group by colum1, column2
반응형
'오류관리' 카테고리의 다른 글
Groovy Script not permitted to use / Double, Float, BigDecimal (0) | 2024.03.21 |
---|---|
constructor [Class Name] in class [Package 경로] cannot be applied to given types. (0) | 2023.05.10 |
ERR_SSL_VERSION_OR_CIPHER_MISMATCH (0) | 2022.12.05 |
Linux Crontab 파일로 등록하기 (1) | 2022.10.18 |
Recv faijlure: Connection was reset (0) | 2022.09.20 |