I have the below Json object. How do I get the count of Object Array.
{
  "Model": [
    {
  "ModelName": "Test Model",    
  "Object": [
     {
       "ID": 1,
       "Name": "ABC"           
     },
     {
       "ID": 11,
       "Name": "ABCD"          
    },         
 ]  
 }]}
I tried the below query but seems JSON_Length was not available.
SELECT ModelName,
       JSON_LENGTH(JsonData, '$.Model[0].Object')
    FROM TabA
The expected output should be
 ModelName      COUNT
 Test Model      2