with t as (select 
user_id,
count(question_id) as cnt
from done_questions_record


group by user_id
having cnt > 2)

select user_id from t 
order by user_id desc