{ "db_name": "PostgreSQL", "query": "\n SELECT u.username as author, p.post_id, p.title, p.content, p.published_at\n FROM posts p\n INNER JOIN users u ON p.author_id = u.user_id\n WHERE p.author_id = $1\n ORDER BY p.published_at DESC\n ", "describe": { "columns": [ { "ordinal": 0, "name": "author", "type_info": "Text" }, { "ordinal": 1, "name": "post_id", "type_info": "Uuid" }, { "ordinal": 2, "name": "title", "type_info": "Text" }, { "ordinal": 3, "name": "content", "type_info": "Text" }, { "ordinal": 4, "name": "published_at", "type_info": "Timestamptz" } ], "parameters": { "Left": [ "Uuid" ] }, "nullable": [ false, false, false, false, false ] }, "hash": "fba37bafbf190369575b92c91d32f57336e8c7d42d5698e2b22e2b5c0427de75" }