In MySQL, you can use \ G to run a query:
select * from mytable\G
And your results will appear in an inverted table, like this:
*************************** 1. row *************************** column1: 12345 another_colum: another value yet_another: ABCD *************************** 2. row *************************** column1: 238479 another_colum: another value again yet_another: WXYZ
Is there a way to get a similar format using Oracle / sqlplus?
user305198
source share