Data Integration
- Data Integration
- 所有产品
Boolean isNull(String satrColName);
引数
| データ型
| 入出力
| 説明
|
---|---|---|---|
strColName
| 文字列型
| 入力
| 入力カラムの名前。
|
// If value of SALARY is not null if (!isNull("SALARY")) { // Add to TOTAL_SALARIES. TOTAL_SALARIES += SALARY; }
// If value of SALARY is not null String strColName = "SALARY"; if (!isNull(strColName)) { // Add to TOTAL_SALARIES. TOTAL_SALARIES += SALARY; }