Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
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 followsInsert into new_table(var1, var2, var3, var4, etc.)select var1, var2, var3, var4 from csv_tableThat is how I do it anyway.
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.