I donโt believe that. The order column is not really a standard SQL function. Well-written db applications do not have to worry about column ordering. You can specify the order of the columns in your output by naming the columns in the SQL statement, as in:
create table t (a int, b int, c int);
select b, c, a from t;
source
share