Hi
I need to know how to update a table in FoxPro.
My table has 1 column with numbers and 1 column for frequencies that is blank
SELECT State, COUNT(*) as Freq;
FROM sample;
GROUP BY State;
INTO CURSOR Counter
After this I do browse and see a column with the information I need
But when I would like to update that to the Frequencies column.
So I will be able to access the data in that column.
Thanks