If I\'m adding a column to a table in Microsoft SQL Server, can I control where the column is displayed logically in queries?
I don\'t want to mess with the physical
All the script really does is create a second table table with the desired column orders, copies all your data into it, drops the original table and then renames the secondary table to take its place. This does save you writing it yourself though should you want a deploy script.