我如何替换“?”在 SSIS 表达式中使用 NULL?

How do I replace "?" with NULL in SSIS expression?

有?在我的数据列中,我必须用 NULL 替换它们。在我的 SSIS 包中。

如果列中已经有问号,它一定是某种字符串。

使用派生列和 if 函数:

[colName] == "?" ? NULL(DT_STR, «length», 1252) : [colName]

[colName] == "?" ? NULL(DT_WSTR, «length») : [colName]