Data Integration
- Data Integration
- All Products
Boolean isNull(String satrColName);
Argument
| Data Type
| Input/Output
| Description
|
---|---|---|---|
strColName
| String
| Input
| Name of an input column.
|
// If value of SALARY is not null if (!isNull("SALARY")) { // Add to TOTAL_SALARIES. TOTAL_SALARIES += SALARY; }
// If value of SALARY is not null String strColName = "SALARY"; if (!isNull(strColName)) { // Add to TOTAL_SALARIES. TOTAL_SALARIES += SALARY; }