Dear @eicken71,
Thank you for your response.
I am not sure I understand your request correctly.
As far as I understand, you want?to select the whole data of both your mentioned table and the ayssurvey_submissions_questions table. This is the reason you want the SQL.
Here is an example of how you can take one submission from that tables:
Please note, that the WordPress_prefix?can be?subject to change,?by default it is written by?wp_.
You need to insert your desired Submission ID instead of the YOUR_SUBMISSION_ID.
You can find it in each submission list table on the Dashboard (Submissions tab).
See the screenshot: https://ibb.co/Yy4QgCk
SELECT * FROM ?wp_ayssurvey_submissions? WHERE id
=YOUR_SUBMISSION_ID;
SELECT * FROM wp_ayssurvey_submissions_questions
WHERE submission_id
=YOUR_SUBMISSION_ID
Thank you.