Sunday, 8 January 2017

mysql - Difference between Encoding and collation?



I have seen certain questions and bugs related to encoding and collation. Could anyone of the visitors explain the difference in MySQL domain?


Answer



Encoding refers to that character set used.
Collation determines the sort order.



See: http://dev.mysql.com/doc/refman/5.5/en/charset-general.html


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...