Just run the script for the table. This is a bit of pseudo code, but you should get this idea.
CREATE TABLE TableWithDesiredOrder(PK,FK1,FK2,COL1,COL2) INSERT INTO TableWithDesiredOrder(PK,FK1,FK2,COL1,COL2....) SELECT PK,FK1,FK2,COL1,COL2.... FROM OriginalTable DROP TABLE OriginalTable
Finally rename the table
sp_Rename TableWithDesiredOrder, OriginalTable
source share