Okay, so, this is hard to explain but I'll give it a shot. Google didn't help me so please update this question if it can help someone else.
Background
I have a table, Persons, with some columns like [ID], [Name] and [PhoneNumbers]. The table is being filled with data from a third party system, so I cannot alter the way we insert data.
The column [PhoneNumbers] contains a JSON array of numbers, like this:
{"phonenumbers":[]}
I am now trying to write a view against that table, with the goal of having one row for each number.
Question
Can I achive this using T-SQL and it's JSON support? I am using SQL Server 2016.