still learning about SSIS
I have an excel source in SSIS, I need to create a case statement based on one of the columns [Teacher]
but as a derived column (as it does not work in the SQL statement)
the normal SQL would be
CASE WHEN [Teacher] like '%A%' then [Teacher] else null end as [Teacher]
I have tried to look for examples, but can't find any with use of the like '%A%'
please help