where clause with ntext in SQL server:
I have a column of type ntext in SQL server how can I evaluate it in a WHERE clause.
Structure of the Table:
sp_help Priorities
Coulumn_name Type
---------------------------------------------------
PriorityId int
ProjectId int
Priority nvarchar
Description ntext
Sample :
select * from Priorities
where Description = 'High'
The error message for the above Query:
Msg 402, Level 16, State 1, Line 2
The data types ntext and varchar are incompatible in the equal to operator.
Solution:
select * from Priorities
where cast(Description as nvarchar(max)) = 'High'
Sunday, May 12, 2013
Error message 402: The data types ntext and varchar are incompatible in the equal to operator.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment