Hi all.
I have a table contains entries with different character case.
Query form:
SELECT id, name FROM mytable ORDER BY name
not work correctly.
First, a string starting with an uppercase letter, after them - lines starting with a lowercase letter.
For example:
Ajax
ZEND
ajax2
zend2
How can I solve this problem?
Thank you in advance.

