ORA-00979 not a group by expression

后端 未结 8 1744
梦谈多话
梦谈多话 2020-11-21 04:33

I am getting ORA-00979 with the following query:

SELECT cr.review_sk, cr.cs_sk, cr.full_name,
tolist(to_char(cf.fact_date, \'mm/dd/yyyy\')) \"appt\",
cs.cs_i         


        
8条回答
  •  广开言路
    2020-11-21 05:03

    Same error also come when UPPER or LOWER keyword not used in both place in select expression and group by expression .

    Wrong :-

    select a , count(*) from my_table group by UPPER(a) .
    

    Right :-

    select UPPER(a) , count(*) from my_table group by UPPER(a) .
    

提交回复
热议问题