I have very simple requirement. I would have done this at the query level. Just wanted to learn how to do it in SSIS also
CASE WHEN MiddleName IS NULL THEN FirstName + ' ' + LastName ELSE FirstName + ' ' + MiddleName + ' ' + LastName END AS FullName
Just wanted to check how i can use ISNULL in derived column to build new column