You can use a derived column transformation, and use either iif() or case().
Reference: MS
Similar thread: Here
Video Reference: yd511kgV78U
Please let us know if it helps.
Thanks
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I would like to reproduce the following CASE statement in a SYNAPSE data flow.
CASE
WHEN A = '00000000'
THEN NULL
ELSE TO_DATE(A, 'YYYYMMDD')
END AS "release_date"
I would like to know how to do it, whether it is a conditional branch of the data flow or a derived column.
Thank you in advance.
You can use a derived column transformation, and use either iif() or case().
Reference: MS
Similar thread: Here
Video Reference: yd511kgV78U
Please let us know if it helps.
Thanks