0
votes
2answers
121 views

Programmatically re-order SQL columns?

I have some SQL code to create my table with all the column names in alphabetical order. The data that I need to load using SQL DATA LOADINFILE is in a drastically different format. I have probably ...
0
votes
3answers
87 views

reorder columns after cte in sql

I need the results of this to be unchanged but i want it to reorder the columns to a specific order. The order i want is Due Beyond, Due Monday, Due Tomorrow, Due Today, Past Due can anyone help ...
-1
votes
3answers
571 views

Reorder/update sql rows by date

Is it possible to reorder sql table rows? I have about 8000 rows and they are kinda in a mess as dates are out of order compared to id, I know you can reset order by deleting and re-adding id (INT ...