Using Fetch Entities Behavior

Using Fetch Entities Behavior

Comments

  • If I'm running a fetch entity step and have criteria that states 'Description != \"potato\

  • Yes, Null is not a value and cant be compared or negatively compared with anything.
    You may need to write (Description IS NULL OR Description <> potato) to return rows where the Description column is null or the Description column contains a value that is not equal to potato.

Sign In or Register to comment.