I am quiet new to programming so i need some help for the query in the below scenario.
user table
uid (PK)| name | score
------------------
1 | john | 20
2 | mary | 40
3 | david | 60
4 | nancy | 80
question_tb table
qid|question
-------------
1 | a
2 | b
3 | c
4 | d
question_user table
quid | user_id (FK) | question_id (FK)
--------------------------------
1 | 1 | 1
2 | 2 | 1
3 | 1 | 2
4 | 3 | 3
As above shows the table structure of the database. question_user
table holds the questions that have been answered by a particular user. I want to get the list of questions in DESC manner that particular user has not been answered.