{ "db_name": "PostgreSQL", "query": "\n SELECT p.author_id, u.username as author, u.full_name,\n p.post_id, p.title, p.content, p.published_at, p.last_modified\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_id", "type_info": "Uuid" }, { "ordinal": 1, "name": "author", "type_info": "Text" }, { "ordinal": 2, "name": "full_name", "type_info": "Text" }, { "ordinal": 3, "name": "post_id", "type_info": "Uuid" }, { "ordinal": 4, "name": "title", "type_info": "Text" }, { "ordinal": 5, "name": "content", "type_info": "Text" }, { "ordinal": 6, "name": "published_at", "type_info": "Timestamptz" }, { "ordinal": 7, "name": "last_modified", "type_info": "Timestamptz" } ], "parameters": { "Left": [ "Uuid" ] }, "nullable": [ false, false, true, false, false, false, false, true ] }, "hash": "1fc92c14786c21d24951341e3a8149964533b7627d2d073eeac7b7d3230513ce" }