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.
我正在使用 SSIS 2008。
我想要一个列的表达式,它必须查看传入的值是否包含句点。
如果它不包含句点,则必须在值的末尾添加一个 .00。
例子。
123.00 Stays 123.00 435 becomes 435.00
试试这个表达式Derived Column
Derived Column
FINDSTRING(Column,".",1) != 0 ? column : column + ".00"