本文介绍了如何在Oracle sqlplus中更清楚地显示表数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望能够以一种漂亮的方式显示选定内容的结果数据,而不是其他列下的所有列.
I want to be able to display the resulting data from a select in a pretty way, not all columns under others.
这是sqlplus显示我的表数据的方式:
Here is the way sqlplus displays my table data:
但我想将它们显示为:
Name | Address | Phone |
-------+---------------+-------------+
name1 | address1 | phone1 |
name2 | address2 | phone2 |
name3 | address3 | phone3 |
不是每一列都在另一列下
Not each column under the other
推荐答案
我通常从以下内容开始:
I usually start with something like:
set lines 256
set trimout on
set tab off
如果已安装帮助信息,请查看help set
.如果确实只希望这两列,则使用select name,address
而不是select *
.
Have a look at help set
if you have the help information installed. And then select name,address
rather than select *
if you really only want those two columns.
这篇关于如何在Oracle sqlplus中更清楚地显示表数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!