Notice that if id field is 'auto_increment' you cannot have two 7s. Also, it's better to use SQL on your data as they might increase in uncontrollable way. That's what the databases are for in the first place.
For your data you can use SQL like this (MySQL):
ORDER BY state DESC, id ASC
Implementing this in Perl would be a waste of time, as the database can do it for you already.