标签: sql oracle-sqldeveloper
目前,当我在sql developer中运行脚本时,它看起来像这样:
脚本输出:
然而,我需要它看起来像,如下所示,彼此相邻打印的列:
示例:
谢谢,感谢帮助
答案 0 :(得分:2)
您可以使用SET sqlformat <format>指定不同的输出格式:
SET sqlformat <format>
SET sqlformat ansiconsole;
在sql查询之前设置它,你应该得到一个更好的格式。如果您查看sqlformat选项,可以使用其他人,但ansiconsole可能是您想要的。
sqlformat
ansiconsole
之后,如果您愿意,可以使用UNSET上的sqlformat恢复原来的状态。
UNSET
UNSET sqlformat;