column
------
specifies display attributes for a given column, such as:
- column heading text
- column heading alignment
- data format
also lists the current display attributes for a single column
or all columns.
col[umn] [ [option ...] ]
where option represents one of the following clauses:
ali[as] alias
cle[ar]
entmap
fold_a[fter]
fold_b[efore]
for[mat] format
hea[ding] text
jus[tify]
like
newl[ine]
new_v[alue] variable
nopri[nt] | pri[nt]
nul[l] text
old_v[alue] variable
on|off
sql>
說明:alias 別名
clear 清楚所定義的
entmap 為html輸出中開/關 例項對映
fold_after 單行到多行時,選擇多行在列後
fold_before 單行到多行時,選擇多行在列前
format 輸出格式
heading text 改變預設列名
justify 對齊方式
like 當前列複製以前列的定義
newline 列印列之前輸出乙個新行
new_value 命名存在title命令中使用列值的變數
noprint/print 關閉/開啟列的顯示
null 改變空值時顯示內容
off/on 關閉/開啟所有選項
old_value 命名乙個儲存在btitle命令使用的列值變數
truncaped 把值截為列定義寬度
plsql程式設計語法
普通變數 declare u name varchar2 20 zhang san begin dbms output.put line u name end 獲取使用者輸入 declare u name varchar2 20 aaa begin dbms output.put line hell...
PL SQL基礎語法
1.分支結構 pl sql中,使用if關鍵字作為分之結構的程式起始段。總體有以下幾種分支結構 1 if condition then statement end if 2 if condition then statement else then statement end if 3 if cond...
PL SQL語法 游標
oracle中的游標分為顯式游標和隱式游標。隱式游標是系統自動為你建立的。顯式游標是使用者通過建立cursor的方式來建立。在oracle中有三種型別的游標 1 不帶引數的游標 eg cursor customer cur is select from customer s 2 帶引數的游標 eg ...