Subject | RE: [firebird-support] Firebird 1.0.3 select group by -> invalid column reference |
---|---|
Author | Alan McDonald |
Post date | 2003-08-29T05:42:45Z |
> I am using Firebird 1.0.3. But when I issue the following SQLGROUP BY needs an aggregate
> statement, I always get a invalid column reference error.
>
> SELECT * FROM MEMBERSHIP GROUP BY USERNAME;
>
> But the following run OK
>
> SELECT * FROM MEMBERSHIP ORDER BY USERNAME;
>
> I seems Firebird does not support the GROUP BY. Is it?
you need
SELECT FIELD1, SUM(FIELD2) FROM MEMBERSHIP GROUP BY FIELD1
or AVG etc
TO USE GROUP BY
I think this is pretty standard SQL
Alan