Data Services
- Data Services 10.1.1 HotFix 2
- 所有产品
Boolean isNull(String satrColName);
パラメータ | パラメータのタイプ | データ型 | 説明 |
|---|---|---|---|
strColName | Input | String | 入力カラムの名前。 |
// 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; }