According to the SQLite documentation: 'The new column is always appended to the end of the list of existing columns.'
Is there any way to change the placement of a column within a table after it is appended without having to create a new table, append to it the records from the source table, then delete the source table and rename the destination table?
I thought it may be beneficial at times when you have a delimited text file without a header that needs to be appended to an altered table but the text file columns have a set order.
Thank you
Is there any way to change the placement of a column within a table after it is appended without having to create a new table, append to it the records from the source table, then delete the source table and rename the destination table?
I thought it may be beneficial at times when you have a delimited text file without a header that needs to be appended to an altered table but the text file columns have a set order.
Thank you