Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简短的问题:
“utf8_general_ci”中的“ci”是什么意思/代表什么?
谢谢
这意味着case insensitive。这样,您就不必担心比较字母的大小写。
case insensitive
select 'A' = 'a'
对于不区分大小写的数据库返回 true。
utf8_general_ci 一般用于不区分大小写的字符识别。这意味着您可以检查条件或从数据库中获取数据而无需 CASE 问题。
例子:
select Name from student where 'R' = 'r';