You can select any number of columns from a table, and display them in any order.
Here is what the command looks like:
```
SELECT column1, column2, ...
FROM table_name;
```
where column1, column2 are the names of the columns you want to select.
The order that you write the column names in will be the order they are shown in the output.