How can I read value from json file in that field name contains space using OPENJSON in Sql Server 2016. See the below code:
DECLARE @json NVARCHAR(MAX)
SET @json = N'{ "full name" : "Jayesh Tank"}';
SELECT * FROM OPENJSON(@json) WITH ( [name] [varchar](60) '$.full name')
Also another sample code in that space is after field name.
SET @json = N'{ "name " : "abc"}';
SELECT * FROM OPENJSON(@json) WITH ( [name] [varchar](60) '$.name')
'$.name'
will return null.Is there way to read this value?