PowerCenter
- PowerCenter 10.5
- Todos os produtos
Boolean isNull(String satrColName);
Parâmetros | Tipo de Parâmetro | Tipo de dados | Descrição |
---|---|---|---|
strColName | Entrada | String | Nome de uma coluna 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; }