Informatica Data Quality
- Informatica Data Quality 10.4.0
- 所有产品
Boolean isNull(String satrColName);
参数 | 参数类型 | 数据类型 | 说明 |
---|---|---|---|
strColName | 输入 | 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; }