Until Site Reviews provides this feature, an easy way to do this is with the Database Browser plugin.
1. Install the Database Browser plugin
2. Go to the “Tools > Database Browser” page
3. Click the “Select table” button (it doesn’t matter which table is selected)
4. Copy the table prefix of your tables (for example, if the table is wp_posts
, the prefix is the first part with the underscore wp_
).
4. Click the “Edit query” button
5. Paste the following SQL query, replacing wp_
in “wp_glsr_ratings” and “wp_posts” with your table prefix:
SELECT
p.post_date as date,
p.post_title as title,
p.post_content as content,
r.*
FROM wp_glsr_ratings AS r
INNER JOIN wp_posts AS p ON r.review_id = p.ID
6. Click the “Run query” button
7. Click the “CSV” button to download the results