Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Needed To Update Records
Message
 
 
To
18/02/2013 14:52:22
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP
Network:
Windows XP
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01566306
Message ID:
01566308
Views:
47
>I am Using the following code to Update Subledger.DBF file from Schedule.DBF.
>Kindly provide me Equivalent SQL to do the same. Currently I am using the following code.
>
>
>
>******UPDATE SUBLEDGER DETAILS*******
>Goto Top
>Scan While .Not. Eof()
>T_Newcode=Left(Accode,3)+"0000"
>
>Select Schedule
>Locate For newcode=T_Newcode
>If Found()=.T.
>T_desc=Desc
>Else
>T_desc="Account Code Missing"
>Endif
>Select Subledger
>Replace Schedule With T_desc
>Endscan
>
>
>
>Regards
>Harsh
UPDATE SubLedger SET Schedule = NVL(Sch.DESC, "Account Code Missing")
FROM SubLedger LEFT JOIN Schedule Sch ON Sch.NewCode = LEFT(SubLedger.AcCode,3) + '0000'
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform