データ接続と統合Pipeline Builder Expressions以上

注: 以下の翻訳の正確性は検証されていません。AIPを利用して英語版の原文から機械的に翻訳されたものです。

Greater than or equals

対応: バッチ、ストリーミング

左が右以上であれば true を返します。

式カテゴリー: ブール

引数

  • Left - 左の式。
    Expression<ComparableType>
  • Right - 右の式。
    Expression<ComparableType>

出力型: ブール

例 1: 基本ケース

引数値:

  • Left: a
  • Right: b
ab出力
10true
11true
01false

例 2: 基本ケース

引数値:

  • Left: a
  • Right: b
ab出力
10.5true
11.0true

例 3: 基本ケース

引数値:

  • Left: a
  • Right: b
ab出力
batrue
abcdabctrue
aabfalse

例 4: Null ケース

引数値:

  • Left: a
  • Right: b
ab出力
nullnulltrue
1nulltrue
null1false