[GENERAL] SQL query problem of a Quiz program

Поиск
Список
Период
Сортировка
От Arup Rakshit
Тема [GENERAL] SQL query problem of a Quiz program
Дата
Msg-id KL1PR0601MB14132728285D7C721E482939B39F0@KL1PR0601MB1413.apcprd06.prod.outlook.com
обсуждение исходный текст
Ответы Re: [GENERAL] SQL query problem of a Quiz program
Re: [GENERAL] SQL query problem of a Quiz program
Re: [GENERAL] SQL query problem of a Quiz program
Список pgsql-general
Hi,

Here is a sample data from table "quiz_results":

id | question_id |  user_id
----+-------------+------------
  2 |          25 | 5142670086
  3 |          26 |
  4 |          26 |
  5 |          27 |
  6 |          25 | 5142670086
  7 |          25 | 5142670086
  8 |          25 | 5142670086
  9 |          26 |
 10 |         40 | 5142670086
 11 |          29 | 5142670086


As you see above question id 25 appeared more than once. This is basically a quiz result table where for users as they
answered.question_id 25 always the first questions. Any user can go though the quiz N number of time. So, I want to
findthe last occurrence of the question_id 25 for any specific user in the table, and select that and all answers the
usersgave after this till the end of the quiz. Any idea how to solve it in a single efficient query. My all try didn't
workout.  



--------------------
Regards,
Arup Rakshit

В списке pgsql-general по дате отправления:

Предыдущее
От: Kevin Grittner
Дата:
Сообщение: [GENERAL] Re: [GENERAL] Love Your Database project — Thoughts on effectively handling constraints?
Следующее
От: Melvin Davidson
Дата:
Сообщение: Re: [GENERAL] SQL query problem of a Quiz program