skip to Main Content

Sum values of JSON array in oracle sql

I have a Table which contains data like id, country, city,capacity. Capacity is a JSON array field which has values like [{'totalCapacity':100.0},{'totalCapacity':90.0},{'totalCapacity':80.0},{'totalCapacity':80.0}] against a row in table, so row in table looks like id country city capacity 1 usa new-york…

VIEW QUESTION

Convert content to text parsing JSON URL response

I've got a url where the result is shown as below "playerInfo": { "059gh": { "eligiblePos": "Flx3,G,Flx,Flx2,PG", "status": "FA" }, "04mr6": { "eligiblePos": "Flx3,G,Flx,Flx2,PG", "status": "FA" }, "059fz": { "eligiblePos": "Flx3,G,Flx,Flx2,PG", "status": "FA" }, "059fw": { "eligiblePos": "Flx3,G,Flx,Flx2,PG", "status": "FA"…

VIEW QUESTION

Flutter Expandable Listview

I have the below list of objects that am trying to make into an expandable list grouped by month. Which is a value in the list. { "status":"Success", "payments":[ { "id":291, "user":{ "id":12, "userID":"cvWLyHRla", "name":"Bill Obama", "email":"email@user1", "username":"username1", "profilePic":null, "created_at":"2023-05-08T00:52:11.000000Z"…

VIEW QUESTION

Normalize nested JSON into multiple tables

I have a table where each row contain nested JSON. I want to normalize this JSON into multiple tables with data. For example below is the JSON for 1 row. { "Arn":"UNLQ5HFPVXMX7", "Merchant":"UNL", "Aun":"aad9561d-17bc-4280-a44f-7fd4cdb2c57a", "ExternalArn":"b7e6d3da-4b63-44a8-adfc-884cce34288d", "Status":"Commenced", "PageIdentifier":"ValidationResult", "ProductRate":{ "RollRate":false, "IsFromRate":false…

VIEW QUESTION
Back To Top
Search