Use both variable name and variable value in processing
raviagrawal
Partner, Registered Posts: 18 Partner
Hi,
I have user case where I have defined a variable like
PHONE: "'iPhone','Samsung Galaxy'"
I am writing a case statement like
when device type in (S{PHONE}) then 'PHONE'
I want to use the variable name itself in the case statement if possible. Could you please let me know if possible ?
I have user case where I have defined a variable like
PHONE: "'iPhone','Samsung Galaxy'"
I am writing a case statement like
when device type in (S{PHONE}) then 'PHONE'
I want to use the variable name itself in the case statement if possible. Could you please let me know if possible ?
Answers
-
Hi,
You can do variable expansion in SQL with the syntax ${variable_name}, as stated here: https://doc.dataiku.com/dss/latest/advanced/variables_expansion.html#pig-sql
Cheers,