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\'
It seems too simple, but it looks like what you need:
SELECT id,question FROM `questions` WHERE `sort_order` > sort_order_variable ORDER BY sort_order ASC LIMIT 1