I need to get some records from a mysql database and order them in a special order: some records have a special string and some don't. I need to put the ones who don't have this special string and than the ones who have. Is there a way using mysql like
SELECT * FROM mutable ORDER BY col_name, "special string not exists"
or do i have t odo it in php after getting the records without order?