I have a table with 10,000 rows. We have an application that parses a *.csv
file and uploads the data to the database table. The csv parser takes the
column numbers form the csv file and matches the column numbers to the field
positions in the DB table.
Now, I have to change the position of a column in the DB to match the csv
parser. I have a column in position 28 that I need to move to position 7.
Anyone know how to do that?
Thanks,
Derrick