PowerCenter
- PowerCenter 10.5
- 所有产品
setNull(String strColName);
パラメータ | パラメータのタイプ | データ型 | 説明 |
---|---|---|---|
strColName | Input | String | 出力カラムの名前。 |
// check value of Q3RESULTS input column if(isNull("Q3RESULTS")) { // set the value of output column to null setNull("RESULTS"); }
// check value of Q3RESULTS input column String strColName = "Q3RESULTS"; if(isNull(strColName)) { // set the value of output column to null setNull(strColName); }