Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to pull some fields from JSON. Some of these fields can have multiple values. The SQL to pull them works for all the fields except one.
Works:
SQL SELECT (SELECT "@Value","__FK_age_group"FROM "age_group" FK "__FK_age_group" ArrayValueAlias "@Value")
SQL SELECT (SELECT "@Value" AS "@Value_u2","__FK_social_health"FROM "social_health" FK "__FK_social_health" ArrayValueAlias "@Value_u2")
Would anyone know why the 2nd example isn't working? Is it because it has a null value? Or because it contains || ?
Thank you.