Redshift doesn't support ordering at all.
I have to solve same problem in my case, and this is how I have done it.
Best option is following unload,alter the table by drop and re-create.
1)Unload to S3
unload ('select (Column1,column2,Column3,...,Column_n) from orginal_table') to 's3://<your_bucket>/<your_file>' CREDENTIALS 'aws_access_key_id=<your_key>;aws_secret_access_key=<your_secret>' MANIFEST DELIMITER '|' GZIP NULL AS 'null_string' ESCAPE ALLOWOVERWRITE;
2)Drop AND/Or re-create
Create duplicate_table(Column1,column2,Column3,...,Column_n);**with new sequence make sure your seq
3)Reload.
copy duplicate_table(Column1,column2,Column3,...,Column_n) from 's3://<your_bucket>/<your_file>manifest' CREDENTIALS 'aws_access_key_id=<your_key>;aws_secret_access_key=<your_secret>' MANIFEST DELIMITER '|' GZIP NULL AS 'null_string' ESCAPE ALLOWOVERWRITE;