How I can group concat of ids with limit 2 and order by id desc? Means, need all the ids except first two ids in desc order.
select group_concat(id) as ids from private_tuition_teacher_pdf where client_id = 14 and teacher_id = 15 limit 2 order by id desc