Home » questions » i need programming help?

i need programming help?

2006-07-31 10:04:44, Category: Programming & Design
if i have a table called ncsp with a field called cust and 100 records in the table and i want to copy only the cust field to another table called cust2 what is the exact commands for that? oh yeah, i forgot im using foxpro

Answers

  1. Neussendorfera

    On 2006-07-31 10:08:05


    what language/enviroment are you working in?
  2. Tenar2

    On 2006-07-31 10:13:01


    in SQL: INSERT INTO cust2 (cust) SELECT cust FROM ncsp