- Posts: 1
- Thank you received: 0
Hello,
I need numeric sorting in these method
1
1,1
2
3
4
11
now Table JX sorting
1
1,1
11
2
3
4
where can I change this
thanks
Please Log in or Create an account to join the conversation.
Hi,
Sorting is made accordingly to the data type in the database. So if you use text or varchar data type the data will be sorted by alphabet. If you used a numeric datatype such as decimal, numeric or double the data will be sorted numerically.
dev.mysql.com/doc/refman/5.0/en/data-types.html
Please Log in or Create an account to join the conversation.