You probably won't get the exact SQL query, since only the SE team knows that. However, the basic form probably looks something like
SELECT * # Replace the actual fields
FROM posts
WHERE (Id = {POST_ID}) OR (ParentId = {POST_ID})
ORDER BY PostTypeId ASC, Score DESC
The reason one table is used is because questions and answers are actually very similar. Both can be voted upon, have authors and editors, etc.. Keeping it in one table makes things easier for the DBAs.
In theory, it might also save a JOIN, but since SE redirects to a question page even if you pass an answer ID as a question ID, it might not necessarily do so.