I am completely confused about the default string comparison method used in Microsoft SQL Server. Up till now I had been using UPPER(
) and LOWER()
functions for performing any string comparison on Microsoft SQL Server.
However got to know that by default Microsoft SQL Server is case insensitive and we need to change the collation while installing Microsoft SQL Server to make it case sensitive. However if this is the case then what is the use of UPPER and LOWER()
functions.