I have a table [JsonTable], and the column [JsonData] save the json string,
JsonData like:
{
   "Names": ["John", "Joe", "Sam"]
}
How can I inner join this table like:
SELECT* FROM [TestTable] AS T
INNER JOIN [JsonTable] AS J ON T.[Name] IN JSON_QUERY(J.[JsonData], '$.Names')
 
     
     
     
    