ALIAS( ) 函式
返回當前表或指定工作區表的別名。
語法
ALIAS([nWorkArea | cTableAlias])
參數
nWorkArea
指定工作區編號,ALIAS( ) 函式返回此工作區表的別名。
cTableAlias
指定表別名,ALIAS( ) 函式返回此表的別名。
如果省略參數 nWorkArea 或 cTableAlias,ALIAS( ) 函式將返回在當前工作區中打開的表的別名。如果當前或指定工作區沒有打開的表,則函式返回空字元串。
返回值類型
字元型
alias( ) 函式示例
下面的示例用於打開 customer 表並顯示其別名。customer 表在另一工作區中被再次打開,並被指定別名為 mycustomer,然後顯示該別名。
close databases
open database (home( ) + 'samples\data\testdata')
use customer && 打開表 customer
clear
? alias( ) && 顯示別名
select 0
use customer again alias mycustomer && 不同的別名
? alias( ) && 顯示別名