We wish to change the locations of the columns of a table by spelling out their names in the desired order.
SELECT col_4,
col_1,
col_2,
col_3
FROM table_1;
Here is how this works:
SELECT
. See Basic Selecting.SELECT
statement will be dropped.