SQL Developer脚本列输出格式

时间:2016-05-29 05:26:40

标签: sql oracle-sqldeveloper

目前,当我在sql developer中运行脚本时,它看起来像这样:

脚本输出:

Script Output

然而,我需要它看起来像,如下所示,彼此相邻打印的列:

示例:

Example

谢谢,感谢帮助

1 个答案:

答案 0 :(得分:2)

您可以使用SET sqlformat <format>指定不同的输出格式:

SET sqlformat ansiconsole;

在sql查询之前设置它,你应该得到一个更好的格式。如果您查看sqlformat选项,可以使用其他人,但ansiconsole可能是您想要的。

之后,如果您愿意,可以使用UNSET上的sqlformat恢复原来的状态。

UNSET sqlformat;