Home > Forum > Database > OPENJSON does not list all fields

OPENJSON does not list all fields
0

Hello everybody.
I'm trying to display all the JSON fields, but I can't. Thanks to anyone who can help me.

1 - JSON structure

'{
"status": "SUCCESS",
"VentaPajaros": {
"codigoClient": 13216598,
"composicionParcelas": [
{
"id": "07"
},
{
"id": "08"
}
],
"pago": {
"fechaprimerpago": "09/12/2022",
"datosventa": {
"valor": 304.63,
"valorMinimo": 522.57
},
"cuota": {
"valor": 174.07,
"valorMinimo": 176.64
}
},
"composicionAcuerdo": {
"totalDeuda": 1490.62,
"iof": 0,
"notificacion": 0,
"gestionProtesta": 0
}
}
}'


2 - Query

SELECT
[status]
,codigoClient
,id
,fechaprimerpago
,valor as cuota_valor

FROM OPENJSON(@json)
with([status] varchar(50) '$.status'

,VentaPajaros nvarchar(max) as json )
outer apply openjson ( VentaPajaros )
with(codigoClient varchar(50) '$.codigoClient'

,composicionParcelas nvarchar(max) as json )
outer apply openjson ( composicionParcelas )
with(id int '$.id'

,pago nvarchar(max) as json )
outer apply openjson ( pago )
with(fechaprimerpago varchar(10) '$.fechaprimerpago'


,cuota nvarchar(max) as json )
outer apply openjson ( cuota )
with(valor varchar(10) '$.cuota.valor'
)

3 - Result
status codigoClient id fechaprimerpago cuota_valor
SUCESS 13216598 7 NULL NULL
SUCESS 13216598 8 NULL NULL

Thanks to anyone who can help me.

WEBCON

Hello

I am not sure what business case you are trying to do this in WEBCON BPS.
But the correct query for json is below:


SELECT
[status]
,codigoClient
,id
,fechaprimerpago
,valor as cuota_valor
FROM OPENJSON(@json)
with([status] varchar(50) '$.status'
,codigoClient varchar(50) '$.VentaPajaros.codigoClient'
,fechaprimerpago varchar(10) '$.VentaPajaros.pago.fechaprimerpago'
,valor varchar(10) '$.VentaPajaros.pago.cuota.valor',
composicionParcelas nvarchar(max) '$.VentaPajaros.composicionParcelas' as json
)
outer apply openjson ( composicionParcelas )
with(id int '$.id')

Privacy overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognizing you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.


To see a full list of the cookies we use and learn more about their purposes, visit our Privacy Policy.