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.
Derived Column TransformationSSIS で使用できる次の SQL クエリを使用する必要があります。
Derived Column Transformation
CASE WHEN A IN (1,2,3) THEN "ABC" ELSE "NA" END
このステートメントを SSIS 式に書き直すにはどうすればよいですか?
派生列式コード:
A == 1 || A == 2 || A == 3 ? "ABC" : "NA"
Aが1、2、または3に等しい場合はチェックし、等しい場合は「ABC」、それ以外の場合は「NA」になります。