Common Content for Data Integration 
			
			- Common Content for Data Integration 10.5.3
- 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; }