select nume,model,sum(km_sosire-km_plecare) as 'km_parcursi' from masina m
inner join (foaie_parcurs f inner join angajat a using(id_angajat)) using(id_masina)
where sum(km_sosire-km_plecare)>100
group by a.nume,m.model
order by sum(km_sosire-km_plecare);

Error: Invalid use of group function

Why?

Thanks.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 4 down vote accepted

You can't use aggregates in the where clause. That's what "having" is for.

select nume,model,sum(km_sosire-km_plecare) as 'km_parcursi' from masina m
inner join (foaie_parcurs f inner join angajat a using(id_angajat)) using(id_masina)
group by a.nume,m.model
having sum(km_sosire-km_plecare)>100
order by sum(km_sosire-km_plecare);
link|improve this answer
FYI, you can use aliases in the HAVING clause so this will work too: having km_parcursi > 100 – Rob Van Dam Jan 16 '10 at 18:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.