Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySql - zuerst nach Zeichenfolgenwert sortieren

In MySQL funktioniert das

SELECT foobar.description 
FROM foobar 
ORDER BY foobar.description <> 'fff',
         foobar.description ASC

Aber generell kann man auch einen case verwenden

SELECT foobar.description 
FROM foobar 
ORDER BY case when foobar.description = 'fff' then 1 else 2 end,
         foobar.description ASC