Publié Tue, 24 Sep 2019 13:59:49 GMT par Craig Heintz SE
I am looking for the logic or entry to use to use in the where part of a SQL Table data Assign to exclude NULL entries.

For example:
WHERE
CustomerNumber IS NOT NULL
or
CustomerNumber = 'is empty'

I do not see any reference in the KB or Forums for this.
Publié Tue, 24 Sep 2019 15:28:37 GMT par Josef Zayats
Craig,
correct SQL syntax to exclude EMPTYs would be

.... where 
CustomerNumber is NOT NULL AND CustomerNumber<>'' 
  ----this is not a double quote, but two single quotes

This is equivalent to Docuware search term in CustomerNumber field NOTEMPTY()
  

You must be signed in to post in this forum.