Informatica Data Quality
- Informatica Data Quality 10.5.2
- 所有产品
setNull(String strColName);
参数 | 参数类型 | 数据类型 | 说明 |
---|---|---|---|
strColName | 输入 | String | 输出列名称。 |
// 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); }