Common Content for Data Engineering
- Common Content for Data Engineering 10.2.1
- Todos los productos
Boolean isNull(String satrColName);
Parámetros | Tipo de parámetro | Tipo de datos | Descripción |
---|---|---|---|
strColName | Entrada | String | Nombre de una columna de entrada. |
// 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; }