Data Integration
- Data Integration
- 所有产品
setNull(String strColName);
引数
| データ型
| 入出力
| 説明
|
---|---|---|---|
strColName
| 文字列型
| 入力
| 出力カラムの名前。
|
// Check the value of Q3RESULTS input column. if(isNull("Q3RESULTS")) { // Set the value of output column to null. setNull("RESULTS"); }
// Check the value of Q3RESULTS input column. String strColName = "Q3RESULTS"; if(isNull(strColName)) { // Set the value of output column to null. setNull(strColName); }