Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
1.1k views
in Q2A Core by
by
Did you tried this option before - https://dev.mysql.com/doc/mysql-for-excel/en/

1 Answer

+1 vote
by

You can export your qa_posts table to a CSV file using phpMyAdmin. You can also do an export based on a SQL query, so you could select only a few fields, for example 

SELECT postid, type, parentid, title, content FROM qa_posts ORDER BY created

Then underneath the table click "Export".

For anything more advanced you'll need to write some custom PHP code.

...