I search how to import json data in table postgresql with the command copy this is a picture of my json file.
[{"csgn":{},"err":["no error"],"num":"884","name":{},"mail":null},{"csgn"....
COPY tbl_import_test_json (csgn,err, num, name, mail) from '/tmp/FILOUT.json' delimiter ',';
This command doesn't work, i have a problem to extract field err.
Thanks for your answer.