I\'ve got a table, called faq_questions with the following structure:
id int not_null auto_increment, question varchar(255), sort_order int
I\'
SELECT id, question, sort_order FROM faq_questions WHERE sort_order in (SELECT MIN(sort_order) FROM faq_questions WHERE sort_order > ?);
That seems to work