使用Oracle / sqlplus时在MySQL中显示类似\G的查询结果?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tom Kyte 创建了一个名为 print_table 做的事情大致相同。
There is a utility Tom Kyte has created called print_table that does roughly the same thing.