Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
578 views
in Q2A Core by
I didn't find it in the qa_posts table.
Q2A version: 1.7.1

1 Answer

+1 vote
by
They are all in qa_posts, look in 'type' field where type = 'A'
by
edited by
Ok thank you very much Steven for your kind response.
SELECT *
FROM `qa_posts`
WHERE postid =882
AND TYPE = "A";
The above query doesn't return any row though post 882 has an answer?
by
edited by
Hi Rez, that sql query needs to have the postid of the answer, NOT the postid of the question.
by
You probably want to do
SELECT * FROM `qa_posts` WHERE parentid=882
...