I would like to order a MySQL query according to a certain alphabetical order. More precisely, the starting letter of the alphabet could change, depending on the webpage.
For instance, I would like to order by query based on these orders:
[B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,A] or [H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,A,B,C,D]
Let's assume my query, very simple, looks like this:
SELECT name
FROM table
ORDER BY name ASC
Would it be possible to do this only with MySQL?
Thanks a lot.