Re: Group By Error Text

Поиск
Список
Период
Сортировка
От Josh Berkus
Тема Re: Group By Error Text
Дата
Msg-id 200301191446.39772.josh@agliodbs.com
обсуждение исходный текст
Ответ на Group By Error Text  (Joseph Healy <j.healy@ugrad.unimelb.edu.au>)
Список pgsql-sql
Joe,

> ERROR:  Attribute drawing_register.jobno must be GROUPed or used in an
> aggregate function
>
> Is this correct? Getting rid of the error is easy:
>
> select jobno, count(jobno) from drawing_register group by jobno;
>
> I believe that jobno is being used in an aggregate function. Should a
> change be made to the error text?

Nope.  The error message is exactly correct.   If you didn't want to GROUP BY
jobno, then what you actually wanted to query was:

SELECT count(jobno) FROM drawing_register;

--
-Josh BerkusAglio Database SolutionsSan Francisco



В списке pgsql-sql по дате отправления:

Предыдущее
От: Joseph Healy
Дата:
Сообщение: Group By Error Text
Следующее
От: "D'Arcy J.M. Cain"
Дата:
Сообщение: Re: Selecting a non-locked row.