以下の例では、country、continent、およびzoneという3つの属性をaddressというSTRUCTURED型UDTに追加します。
ALTER TYPE address /* Add 3 attributes to structured type */ ADD ATTRIBUTE country VARCHAR(15), continent VARCHAR(20), zone INTEGER;
以下の例では、country、continent、およびzoneという3つの属性をaddressというSTRUCTURED型UDTに追加します。
ALTER TYPE address /* Add 3 attributes to structured type */ ADD ATTRIBUTE country VARCHAR(15), continent VARCHAR(20), zone INTEGER;