Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have data loaded in with fields,
id, workflow, score, Reference
How can I create a new table in the load that gives me;
Reference, wf1_score, wf2_score, wf3_score
I have tried
LOAD
Reference,
if(workflow='wf1', score) as wf1_score etc
but this doesnt seem to be working. Is there a better way?
Hi, try this may be it works
if(workflow='wf1', workflow) & '_' & score as wf1_score etc