What's the difference between utf8_general_ci and utf8_unicode_ci?

后端 未结 8 1217
暗喜
暗喜 2020-11-22 01:38

Between utf8_general_ci and utf8_unicode_ci, are there any differences in terms of performance?

8条回答
  •  别那么骄傲
    2020-11-22 02:16

    In brief words:

    If you need better sorting order - use utf8_unicode_ci (this is the preferred method),

    but if you utterly interested in performance - use utf8_general_ci, but know that it is a little outdated.

    The differences in terms of performance are very slight.

提交回复
热议问题