How to display table data more clearly in oracle sqlplus

后端 未结 4 1215
猫巷女王i
猫巷女王i 2020-11-28 04:13

I want to be able to display the resulting data from a select in a pretty way, not all columns under others.

Here is the way sqlplus displays my table data:

4条回答
  •  青春惊慌失措
    2020-11-28 04:28

    I usually start with something like:

    set lines 256
    set trimout on
    set tab off
    

    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.

提交回复
热议问题