In SQL Server, is there a way to do IN
query over json array ?
eg.
There's a column foo
which contains a json array
row1 -> {"foo":["a", "b"]}
row2 -> {"foo":["c", "a", "b"]}
I need to query rows which has b
in json array
JSON_QUERY
can return the array, but there's no way to do
Something like
SELECT *
FROM table1
WHERE "b" in JSON_QUERY(foo)
LIKE
query will work, but is inefficient
You can combine
OPENJSON
withJSON_QUERY
and useCROSS APPLY
to break down the result to the array elements levelSample input:
Sample output: