投稿済み Tue, 24 Sep 2019 13:59:49 GMT 、投稿者 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.
投稿済み Tue, 24 Sep 2019 15:28:37 GMT 、投稿者 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()
  

フォーラムに投稿するためにはログインが必要です。