Reason why oracle is case sensitive?

前端 未结 5 1790
野趣味
野趣味 2020-11-29 02:43

Is there a reason why Oracle is case sensitive and others like SQL Server, and MySQL are not by default?

I know that there are ways to enable/disabl

5条回答
  •  时光取名叫无心
    2020-11-29 03:26

    Keep in mind too for SQL Server the case sensitivity is based on the collation. The default collation is case insensitive - but this could be changed to be case sensitive. A similar example is why do the default Oracle databases use a Western European character set when UTF is required for global applications that use non ASCII characters? I think it's just a vendor preference.

提交回复
热议问题