visual foxpro - need to update table from another table

前端 未结 1 1993
孤独总比滥情好
孤独总比滥情好 2021-01-07 05:04

I have 2 dbf tables and I need to update the 1st table based from the 2nd table values. I am able to do it in SQL server and I need help on Visual Foxpro.

Here\'s my

相关标签:
1条回答
  • 2021-01-07 05:27
    Update Table1 From table2 Where table1.id = table2.id ;
    Set table1.name = table2.name
    
    0 讨论(0)
提交回复
热议问题