Reply to thread

Slippertalk Orchid Forum

Help Support Slippertalk Orchid Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.

Good to see you have some solution albeit not ideal.




If the import of the CSV file created another table then you could simply insert the data as follows


Insert into new_table

(var1, var2, var3, var4, etc.)

select  var1, var2, var3, var4  from csv_table


That is how I do it anyway.


Back
Top