PowerCenter
- PowerCenter 10.5.7
- 所有产品
Boolean isNull(String satrColName);
パラメータ | パラメータのタイプ | データ型 | 説明 |
---|---|---|---|
strColName | Input | String | 入力カラムの名前。 |
// if value of SALARY is not null if (!isNull("SALARY")) { // add to totalSalaries TOTAL_SALARIES += SALARY; }
// if value of SALARY is not null String strColName = "SALARY"; if (!isNull(strColName)) { // add to totalSalaries TOTAL_SALARIES += SALARY; }