I have the below T-SQL line of query that I'm trying to translate into Visual studio SSIS expression into derived column task.
So tableA has just [Work item /Submission no#] column, but I need to split them into two column like SubmissionCommon and SubmissionNumber in TableB when below case is executed.
CASE
WHEN ISNUMERIC(SUBSTRING([Work item /Submission no#], 4, 2)) = 1
THEN LEFT([Work item /Submission no#], 15)
ELSE LEFT([Work item /Submission no#], 16)
END AS SubmissionCommon,
[Work item /Submission no#] AS SubmissionNumber



