Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Append from question
Message
 
 
To
12/07/2007 12:38:24
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01239762
Message ID:
01239763
Views:
8
>It is possible to use append from command in the current table with conditions of another table?..
>
>Like this:
>
>
>Select table1
>
>Select table2
>Append from table1 for table1.field1 = 1
>
>
>
>Trying to use this command, but it transfers all the records of table1…
>Any better idea?..
>
>Thanks in advance
>Carlos Burgos

You can use INSERT-SQL instead, e.g.
insert into Table2 select * from Table1 where field1 = 1
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