To fill it out a bit:
/ Table to hold all the questions /
create table question
(
id int auto_increment,
q text,
...
 ðŸ˜‰;
create table user
(
id int auto_increment,
name text,
...
 ðŸ˜‰;
create table response
(
user_id int, / references user.id /
quest_id int, / references question.id /
answer text
 ðŸ˜‰;
Now, to get all the questions answered by a given user:
select user.id, user.name, question.q, response.answer from user, question, answer where response.user_id = user.id and question.id = response.quest_id;
DISCLAIMER: this is all off the top of my head, so beware of typos and thinkos!