2
我需要幫助設置SQL輸出的格式。前者爲 。我有下面這樣的查詢其給出以下結果:在oracle查詢格式上需要幫助
SQL> select instance_name,status from v$instance;
INSTANCE_NAME STATUS
---------------- ------------
isorcl1 OPEN
但我想輸出是在格式類似下面,你能不能請大家幫忙! 在此先感謝!
SQL> select instance_name,status from v$instance;
INSTANCE_NAME ISORCL1
STATUS OPEN
這在sqlplus中是不可能的。您必須複製輸出並使用Notepad ++等,然後手動刪除這些行 – Prathyush