I want to be able to display the resulting data from a select in a pretty way, not all columns under others.
Here is the way sqlplus displays my table data:
I usually start with something like:
set lines 256 set trimout on set tab off
Have a look at help set if you have the help information installed. And then select name,address rather than select * if you really only want those two columns.
help set
select name,address
select *