Hi Guys,
I have this records:
Key1 A 100
Key1 B 200
Key1 C 300
Key 2 D 400
I would like to Get the Key1 and Sum all the values(600) and put that on another Field.
It is possible to do it with an Update sentence?
Update MyTable
Set MyField = SUM(KEY1)
Group By ...
Or I need to do a Loop or other thing?
Thanks a lot
MR
I have this records:
Key1 A 100
Key1 B 200
Key1 C 300
Key 2 D 400
I would like to Get the Key1 and Sum all the values(600) and put that on another Field.
It is possible to do it with an Update sentence?
Update MyTable
Set MyField = SUM(KEY1)
Group By ...
Or I need to do a Loop or other thing?
Thanks a lot
MR