Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Update
Message
From
12/01/2012 00:20:40
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Update
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Network:
Windows XP
Miscellaneous
Thread ID:
01532776
Message ID:
01532776
Views:
83
Dear Experts

Following codes work fine
select test3
scan
    scatter memvar
    select table1
    locate for date=m.date and sno=m.sno and code=[3501001]
    if found()
        amt=amount
        select test3
        replace qty with amt
    endif
endscan
But these codes do work. Please help me to find what is wrong.
update test3;
    set qty=table1.amount;
    where test3.date=table1.date;
    and test3.sno=table1.sno;
    and table1.code=[3501001]
Next
Reply
Map
View

Click here to load this message in the networking platform