Hi NG,
I have two tables:
TABLE1 (id1 INTEGER NOT NULL, id2 INTEGER NOT NULL, value INTEGER, PRIMARY KEY (id1, id2))
TABLE2 (id1 INTEGER NOT NULL, text CHAR(4), PRIMARY KEY (id1))
And this is the query, that I'm trying to run on this tables:
select TABLE1.id1, TABLE2.text, sum(TABLE.value)
from table1, table2
where TABLE1.id1=TABLE2.id1
group by TABLE1.id1
order by TABLE1.id1 asc
Well - it doesn't work at all!

That is the reason?!
Appreciate everyone's help!!!
S.B.