Common Content for Data Engineering
- Common Content for Data Engineering 10.2.2 Service Pack 1
- Tous les produits
setNull(String strColName);
Paramètre | Type de paramètre | Type de données | Description |
|---|---|---|---|
strColName | Entrée | Chaîne | Nom d'une colonne de sortie. |
// check value of Q3RESULTS input column if(isNull("Q3RESULTS")) { // set the value of output column to null setNull("RESULTS"); }
// check value of Q3RESULTS input column String strColName = "Q3RESULTS"; if(isNull(strColName)) { // set the value of output column to null setNull(strColName); }