This is a SQL Server Integration Services (SSIS) expression issue (I'm pretty familiar with it).
I would like to write a switch / case expression in a Derived Column transformation - basically a new column can have 5 different possible values based on the value of the input column. All I got from Google is this (condition)? (true value): (false value), but this gives only two possible values. Does the SSIS expression have an expression of type switch / case?
I was thinking about using sequential Derived Column transforms or creating a temporary lookup table, but this seems more complicated than it really should be.
Thanks.
source
share