Last active
September 10, 2022 19:34
-
-
Save kracekumar/b8a832cd036b54075a2715acf2086d62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
krace@hotbox /m/u/code> cat json_pg.py | |
import psycopg2 | |
def run(stmt): | |
cur = psycopg2.connect(database='test', user='postgres', password='password', host='localhost').cursor() | |
cur.execute(stmt) | |
result = cur.fetchall() | |
print(list(result)) | |
stmt = 'select cast(row_to_json(row) as text) from (select book.id, book.name, book.author_id, author.name as author_name from book inner join author on book.author_id = author.id) row;' | |
run(stmt) | |
krace@hotbox /m/u/code> python json_pg.py | |
[('{"id":1,"name":"War and Peace","author_id":1,"author_name":"Leo Tolstoy"}',), | |
('{"id":2,"name":"The Trial","author_id":2,"author_name":"Kafka"}',), | |
('{"id":3,"name":"The metamorphosis","author_id":2,"author_name":"Kafka"}',)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment