PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

python json dumps fügt Objekt in Objekt bei row_to_json-Rückgabe ein

Das passiert, wenn Sie die gesamte Ergebnismenge ausgeben. Mit dem t Tabelle:

create table t (a int, b text);
insert into t (a, b) values (1,'x'), (2,'y');

Mit Psycopg2:

query = "select row_to_json(t) from t"
cursor.execute(query)
rs = cursor.fetchall()

# dump the whole result set
print json.dumps(rs)
print

# dump each column:
for r in rs:
    print json.dumps(r[0])
con.close()

Ausgabe:

[[{"a": 1, "b": "x"}], [{"a": 2, "b": "y"}]]

{"a": 1, "b": "x"}
{"a": 2, "b": "y"}