I am trying to insert bulk data into postgres. So I have converted my data into json object and now I want to insert that data into a physical table the json object can contain over 100k records. So I want to do it dynamically by using postgres function. My question is how can I query my sample data as a table
This is the sample json data
[
{
"sequence": 123123.0,
"Card number ": "12312qwe",
"Tracking number": 1231233.0,
"Expiry Date": 43741.0
},
{
"sequence": 123123.0,
"Card number ": "12312qwe",
"Tracking number": 1231233.0,
"Expiry Date": 43741.0
},
{
"sequence": 123123.0,
"Card number ": "12312qwe",
"Tracking number": 1231233.0,
"Expiry Date": 43741.0
}
]