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

mysql order by name asc ingore führt 'the'

Eine korrektere, aber langsamere Antwort ist:

ORDER BY CASE WHEN SUBSTR(name, 1, 4) = 'the ' THEN SUBSTR(name, 5) ELSE name END;