The %ls data type cannot be selected as DISTINCT because it is not comparable.

Error Message:
Msg 421, Level 16, State 1, Line 7
The %ls data type cannot be selected as DISTINCT because it is not comparable. Severity level:
16. Description:
This error message appears when you try to use the DISTINCT keyword on a data type that is not comparable. Consequences:
The T-SQL statement can be parsed, but causes the error at runtime. Resolution:
Error of the Severity level 16 are generated by the user and can be fixed by the SQL Server user. The statement cannot be run this way. You can not use the DISTINCT keyword on a data type that is not comparable. Versions:
All versions of SQL Server. Example(s):
IF OBJECT_ID(‘dbo.t’) IS NOT NULL
    DROP TABLE dbo.t;
GO CREATE TABLE dbo.t
(
    c1 text
); SELECT DISTINCT
    c1
FROM
    dbo.t; Remarks:
In the above example we try to use the DISTINCT keyword on a column of data type text. This raises the error. ]]>

Leave a comment

Your email address will not be published.