G
Guest
Not sure if this is the right location for this question.
I Saw several previous FP questions in this Group and did not see one for
VFP....
If this is the wrong group, please direct me appropriately.
I have two tables and I would like to update a field in table1 based on data
in table2. Here is an example of what I thought I could do based on SQL .
update employee
set salary = e.salary + b.amount
from employee e, bonus b
where e.empid = b.empid and e.company = b.company.
I have tried several updates from a google search including joins, and sub
selects to no avail.
Any assistance would be greatly appreciated.
I Saw several previous FP questions in this Group and did not see one for
VFP....
If this is the wrong group, please direct me appropriately.
I have two tables and I would like to update a field in table1 based on data
in table2. Here is an example of what I thought I could do based on SQL .
update employee
set salary = e.salary + b.amount
from employee e, bonus b
where e.empid = b.empid and e.company = b.company.
I have tried several updates from a google search including joins, and sub
selects to no avail.
Any assistance would be greatly appreciated.