在MySQL中,您可以使用\ G运行查询:
select * from mytable\G
您的结果将显示在倒置的表格中,有点像这样:
*************************** 1. row ***************************
column1: 12345
another_colum: another value
yet_another: ABCD
*************************** 2. row ***************************
column1: 238479
another_colum: another value again
yet_another: WXYZ
有没有办法使用Oracle / sqlplus获得类似的格式?