-2

我正在尝试做 - doctype 不为 null (doctype=documenttype)

我查看了 MSDN 上的 SQL 中的 not null 和 where 子句,但我似乎找不到任何东西。我的最后一次尝试是

where DocType is not null (f4111dt.DocType=f0911.documenttype)

但是它在 f4111dt 周围抛出了一个错误,这不是问题

如果我只有 where 4111dt.DocType=f0911dt.documenttype

然后我丢失了 4111dt.DocType 中的空值(我想要的),因为它们与 f0911dt.documenttype 中的任何内容都不匹配。

但是,如果我没有声明 4111dt.DocType=f0911dt.documenttype 文档类型将不匹配...

4

2 回答 2

3

如果您还试图带上 doctype 为空的那些:

Where DocType is null OR (f4111dt.DocType=f0911.documenttype)
于 2013-06-28T10:27:16.000 回答
2

尝试这个

where DocType is not null AND (f4111dt.DocType=f0911.documenttype)
于 2013-06-28T10:26:02.093 回答