I have two tables and one is in foxpro and the other one is in SQL. What I want is, those tables have same fields but the field names are different.
Now I need to get records from foxpro table that only have records in SQL table. Something like this,
_DelClr = foxpro table
How can I do this?
Thank you
Code:
foxpro table
nStylecode cLotName
12345 A1
Code:
SQL table
csty_no clot
12345 A1
Now I need to get records from foxpro table that only have records in SQL table. Something like this,
Code:
SELECT * from _DelClr where nStylecode in (SELECT csty_no FROM MIS.dbo.vInvFinal) AND clotname in (SELECT clot FROM MIS.dbo.vInvFinal)
_DelClr = foxpro table
How can I do this?
Thank you