Hi,
I want to sort the results of a query using a sort rule that doesn't correspond to the default "ORDER BY".
I explain :
I select the "name" field of a table and want to order the results by the first letter of this name field. If I simply put "ORDER BY LEFT(name,1)" , I'll get the following results :
A B C etc.
The problem is , I want to order it with a defined starting letter ; for example, if I want the first letter to be "V", I want to get the following results :
V W X Y Z A B C etc.
Do you know any way to modify this sort order and get the results as I previously described ?