Informatica Data Quality
- Informatica Data Quality 10.4.1
- All Products
Boolean isNull(String satrColName);
Parameters | Parameter Type | Datatype | Description |
---|---|---|---|
strColName | Input | String | Name of an input column. |
// 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; }