使用Oracle / sqlplus时,在MySQL中显示像\ G的查询结果?

时间:2010-03-30 14:40:29

标签: oracle sqlplus

在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获得类似的格式?

1 个答案:

答案 0 :(得分:4)

Tom Kyte创建了一个名为print_table的实用工具,其功能大致相同。