In SQLSERVER/MSSQL, here's the problem:
SELECT * from [Translation Color] order by [Language Code]
I want records ordered in alphabetical order starting by the 'I' letter.
Example of result:
'Ioren' 'Iumen' 'Tart' 'Arfen' 'Coldry'
I don't want to use union or more sql statements.. just try to catch it with an order by special clause.
I've tried with:
ORDER BY <field> REGEXP '^I' DESC
but it didn't work.
Any ideas?