Consider i have an array of json as follows
[
{"a":1,"b":2},{"a":3,"b":4} ,{"a":5,"b":6}
]
I have to insert this into postgtreSQL as follows:
in out
1 2
3 4
5 6
I read about JSON datatypes in postgreSQL, but i couldn't figure out how to achieve this. please share your ideas. Thanks in advance.