Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道如何检查IS NullSISS 上的表达吗?
IS Null
IF 列是 NULL > RETURN NULL ,IF 不是列的返回值
我正在 DerivedColumn 上开发这个。
仅供参考:该列并不总是在我的 Excel 布局中,这就是我必须检查该列是否存在的原因。
您可以使用以下表达式:
(ISNULL([InputColumn]) || [InputColumn] == "") ? NULL(DT_STR,50,1252) : [InputColumn]
参考