Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このクエリで単一グループのグループ関数ではないというエラーが発生した場合、どうすれば解決できますか?
select to_char(fecha_ingreso,'DY') dia, count(num_dept) n from empleados group by dia
質問は単純すぎるので、次のように記述してください。
select to_char(fecha_ingreso,'DY') dia, count(num_dept) n from empleados group by to_char(fecha_ingreso,'DY')
これは、select 句が group by 句の後に評価されるためです。