Answer:
Collation refers to a set of rules that determine how data is sorted and compared. Character data is sorted using rules that define the correct character sequence, with options for specifying case-sensitivity, accent marks, kana character types, and character width.
Note: - Different languages will have different sort orders.
Collation refers to a set of rules that determine how data is sorted and compared. Character data is sorted using rules that define the correct character sequence, with options for specifying case-sensitivity, accent marks, kana character types, and character width.
Case Sensitivity
IfA
and a
, B
and b
, etc. are treated in the same way, then it is case-insensitive. A computer treats A
and a
differently because it uses ASCII code to differentiate the input. The ASCII value of A
is 65, while a
is 97. The ASCII value of B
is 66 and b
is 98.Accent Sensitivity
Ifa
and A
, o
and O
are treated in the same way, then it is accent-insensitive. A computer treats a
and A
differently because it uses ASCII code for differentiating the input. The ASCII value of a
is 97 and A
225. The ASCII value of o
is 111 and O
is 243.
No comments:
Post a Comment