条件付き演算子リファレンス |
「条件付き演算子」は条件ステートメント内で使用して、データソースと指定値の間で確立する関係性を決定します。文章と同様に、条件ステートメントは主語 (データソース)、述語 (演算子)、および目的語 (値) で構成されます。条件付き演算子を使用すれば、次のことが可能になります。
各条件付き演算子で使用できる有効なデータ型を次の表に示します。
|
使用できる条件付き演算子は、作成する条件ステートメントの対象となる機能に応じて異なることがあります。また、ドキュメントに接続されているデータベースの種類によっても異なります。ステートメントで使用可能な条件付き演算子を表示する方法の詳細については、条件付きステートメントの作成に使用する特定のダイアログまたはプロパティページのドキュメントを参照してください。 |
|
条件付き演算子 |
有効な入力 |
例 |
---|---|---|---|
|
Equals |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Equals <値> |
|
Does not equal |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Does Not Equal <値> |
|
Is greater than |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is greater than <値> |
|
Is greater than or equal to |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is greater than or equal to <値> |
|
Is less than |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is less than <値> |
|
Is less than or equal to |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is less than or equal to <値> |
|
Is between |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is between <値 1> and <値 2> |
|
Is not between |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is not between <値 1> and <値 2> |
|
Contains |
テキストのみ |
[データソース] Contains <値> |
|
Does not contain |
テキストのみ |
[データソース] Does Not contain <値> |
|
Begins with |
テキストのみ |
[データソース] Begins with <値> |
|
Ends with |
テキストのみ |
[データソース] Ends with <値> |
|
Is like |
テキストのみ |
[データソース] Is like <値> |
|
Is not like |
テキストのみ |
[データソース] Is not like <値> |
|
Is Null |
SQL のみ |
[データソース] Is Null |
|
Is Not Null |
SQL のみ |
[データソース] Is Not Null |
|
Is Empty |
テキストのみ |
[データソース] Is Empty |
|
Is Not Empty |
テキストのみ |
[データソース] Is Not Empty |
|
Is blank |
すべてのデータ型 |
[データソース] Is blank |
|
Is not blank |
すべてのデータ型 |
[データソース] Is not blank |
|
Is any of |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is any of <値 1>, <値 2>, and <値 3>... |
|
Is none of |
時間、バイナリ、ピクチャ以外のすべてのタイプ |
[データソース] Is none of <値 1>, <値 2>, <値 3>... |
|
Is beyond this year |
日付のみ |
[データソース] Is beyond this year |
|
Is later this year |
日付のみ |
[データソース] Is later this year |
|
Is later this month |
日付のみ |
[データソース] Is later this month |
|
Is next week |
日付のみ |
[データソース] Is next week |
|
Is later this week |
日付のみ |
[データソース] Is later this week |
|
Is tomorrow |
日付のみ |
[データソース] Is tomorrow |
|
Is today |
日付のみ |
[データソース] Is today |
|
Is yesterday |
日付のみ |
[データソース] Is yesterday |
|
Is earlier this week |
日付のみ |
[データソース] Is earlier this week |
|
Is last week |
日付のみ |
[データソース] Is last week |
|
Is earlier this month |
日付のみ |
[データソース] Is earlier this month |
|
Is earlier this year |
日付のみ |
[データソース] Is earlier this year |
|
Is prior this year |
日付のみ |
[データソース] Is prior this year |
関連トピック