Click HERE to see how Saviynt Intelligence is transforming the industry. |
01/09/2023 07:32 PM
Hi Team,
Can anyone give any example how we can user uppercase and lower case function in customquery.
Regards,
Varshita
01/09/2023 09:03 PM
update users set customproperty1 =lower(firstname), customproperty2 = upper(firstname) where username='admin' limit 1;
01/10/2023 12:08 AM
Hi Rushikesh,
Can we use case also in customquery?
Requirement is we need to combine case statements , upper and lower functions.
Thanks,
Varshita
01/10/2023 03:56 AM
Yes all sql function works
update users set customproperty1 = case when userkey=1 then lower(firstname) else null end , customproperty2 = upper(firstname) where username='admin' limit 1;