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

发布于 2024-08-27 19:57:05 字数 517 浏览 9 评论 0原文

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

In MySQL, you can use \G to run a query:

select * from mytable\G

And your results will be displayed in an inverted table, kinda 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 any way to get a similar format using Oracle / sqlplus?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

念三年u 2024-09-03 19:57:05

Tom Kyte 创建了一个名为 print_table 做的事情大致相同。

There is a utility Tom Kyte has created called print_table that does roughly the same thing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文