7

条件付き分割コンポーネントでは、Ageが-1に等しいかどうかを知る必要があり、次のステートメントを使用しています。ここに画像の説明を入力してください

ただし、実行時にエラーが発生します。ステートメントをどのように変更する必要がありますか?Thx a loooooooot !!

Error: The expression "Age == -1" on "output "Unknown" (12743)" evaluated to NULL, but the "component "Age Conditional Split 1" (12740)" requires a Boolean results. Modify the error row disposition on the output to treat this result as False (Ignore Failure) or to redirect this row to the error output (Redirect Row).  The expression results must be Boolean for a Conditional Split.  A NULL expression result is an error.
4

1 に答える 1

13

年齢にNULL値があると思います。同じ不明な出力にNULLを送信する場合は、式を次のように変更できます。

ISNULL(Age) || Age == -1
于 2012-08-23T16:43:12.607 に答える