Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

ordem mysql por nome asc ingore levando 'the'


Uma resposta mais correta, mas mais lenta, é:
ORDER BY CASE WHEN SUBSTR(name, 1, 4) = 'the ' THEN SUBSTR(name, 5) ELSE name END;