使用 LIKE 關鍵字

使用 LIKE,你可以將變數的定義基於另一個變數或資料庫或臨時表中的欄位。

定義變數 LIKE 資料庫欄位要求資料庫始終連線。這可能並不總是你想要的。

DEFINE VARIABLE i AS INTEGER NO-UNDO LABEL "Nr" FORMAT "99999".
/* Define a variable with the same properties as "i" */
DEFINE VARIABLE j LIKE i.

/* Define a variable based on Customer.Custnum from the sports2000 database but 
override the label-definition */    
DEFINE VARIABLE k LIKE Customer.Custnum LABEL "Client".