Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "ci" in "utf8_general_ci" stand for

Short question:

What does the "ci" in "utf8_general_ci" mean / stand for?

Thanks

like image 691
Daniel W. Avatar asked Dec 16 '22 04:12

Daniel W.


1 Answers

It means case insensitive. That way you don't have to worry about the case of letters in comparision for instance.

select 'A' = 'a' 

returns true for case insensitive databases.

like image 166
juergen d Avatar answered Dec 19 '22 09:12

juergen d