I don't understand Collation? (Mysql, RDBMS, Character sets)

前端 未结 2 1133
生来不讨喜
生来不讨喜 2020-12-07 23:25

I Understand Character sets but I don\'t understand Collation. I know you get a default collation with every Character set in Mysql or any RDBMS but I still don\'t get it! C

2条回答
  •  一生所求
    2020-12-08 00:11

    Collation is information about how strings should be sorted and compared.

    It contains for example case sensetivity, e.g. whether a = A, special character considerations, e.g. whether a = á, and character order, e.g. whether O < Ö.

提交回复
热议问题