メイン コンテンツをスキップする

演算子

以下のテーブルにより、基本モードで使用できる演算子がリスト表示されます。

基本モードで利用できるテキスト演算子
演算子名 例と詳細
is CustomerName is Smith
is not FirstName is not John
contains StatusCode contains 0AZ
does not contain ItemID does not contain X32
starts with BankNumber starts with FR
does not start with ItemID does not start with DE123
ends with BankNumber ends with 0089
does not end with BankNumber does not end with Y9
matches regex PostalCode matches regex ^[0-9]{5}(-[0-9]{4})?$
does not match regex SSN does not match regex ^\\d{3}-\\d{2}-\\d{4}$
is of type Location is of type Asia

セマンティックタイプまたは標準タイプ: ブール値、日付、小数点、整数のいずれか

is empty DriverLicense is empty
基本モードで利用できる数字演算子
演算子名 例と詳細
is equal to Age is equal to 21
is not equal to CustomerID is not equal to 16742
is greater than Age is greater than 17
is greater than or equal to Age is greater than or equal to 21
is less than Age is less than 16
is less than or equal to Age is less than or equal to 20
基本モードで利用できる日時演算子
演算子名 例と詳細
is equal to DateOfReceipt is equal to 2020-05-14 09:55:00
日付、時刻、その両方のいずれかを選択できます。サポートされている形式は以下のとおりです。
  • yyyy-mm-dd
  • hh:mm:ss
  • yyyy-mm-dd hh:mm:ss
is not equal to ValidationDate is not equal to 2020-09-02
日付、時刻、その両方のいずれかを選択できます。サポートされている形式は以下のとおりです。
  • yyyy-mm-dd
  • hh:mm:ss
  • yyyy-mm-dd hh:mm:ss
is before BirthDate is before 2003-12-16
日付、時刻、その両方のいずれかを選択できます。サポートされている形式は以下のとおりです。
  • yyyy-mm-dd
  • hh:mm:ss
  • yyyy-mm-dd hh:mm:ss
is before or equal to ExpiryDate is before or equal to 2002-01-01
日付、時刻、その両方のいずれかを選択できます。サポートされている形式は以下のとおりです。
  • yyyy-mm-dd
  • hh:mm:ss
  • yyyy-mm-dd hh:mm:ss
is after BirthDate is after 1983-12-31
日付、時刻、その両方のいずれかを選択できます。サポートされている形式は以下のとおりです。
  • yyyy-mm-dd
  • hh:mm:ss
  • yyyy-mm-dd hh:mm:ss
is after or equal to BirthDate is after or equal to 1971-01-01
日付、時刻、その両方のいずれかを選択できます。サポートされている形式は以下のとおりです。
  • yyyy-mm-dd
  • hh:mm:ss
  • yyyy-mm-dd hh:mm:ss
is in (month) HireDate is in month March
is on (day of the week) PublicationDate is on day of the week Friday
is on (day of the month) PublicationDate is on day of the month 16

基本モードで利用できるブール演算子
演算子名 例と詳細
is true Validity is true
is false Validity is false
is equal to Access is equal to Validity

この演算子を使ってブール型の2つの変数を比較します。

is not equal to Access is not equal to Validity

この演算子を使ってブール型の2つの変数を比較します。

このページは役に立ちましたか?

このページまたはコンテンツに、タイポ、ステップの省略、技術的エラーなどの問題が見つかった場合は、お知らせください。改善に役立たせていただきます。