I have a TABLE with two columns:
ID DESCRIPTION
1 first line
2 second line
3 _
4 1 first numeric line
and I have a query
SELECT * FROM TABLE ORDER BY DESCRIPTION
The problem is that I retrieve different result depending on the machine where I run the code. If I run the code on
linux (centos) I get the following result
ID DESCRIPTION
4 1 first numeric line
3 _
1 first line
2 second linewindows (7) I get the following result
ID DESCRIPTION
3 _
1 first line
2 second line
4 1 first numeric lineMAC OS(Snow Leopard) i get the folowing result
ID DESCRIPTION
3 _
1 first line
2 second line
4 1 first numeric line
So as you can see the underscore "_" is treat different depending on the machine where I run the query :(.
Is this a problem of the driver? Why i don't get the same result?