SQL Server:当列为 NTEXT 时 IN ('asd') 不起作用
我该如何解决这个问题?
where someNtext IN ('asd',asd1')
给出错误:
消息 402,16 级,状态 1,第 XXXXX 行
数据类型 ntext 和 varchar 在等于运算符中不兼容。
How can I fix this problem?
where someNtext IN ('asd',asd1')
gives an error:
Msg 402, Level 16, State 1, Line XXXXX
The data types ntext and varchar are incompatible in the equal to operator.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
IN
列表只是 OR 条件的简写。LIKE
子句适用于NTEXT
和TEXT
字段。因此,您可以结合这两个想法来做到这一点:但是,正如 @marc_s 在问题评论中建议的那样,
NVARCHAR(MAX)
是首选,因为所有字符串函数都可以使用它(并且TEXT、
NTEXT
和IMAGE
数据类型已被弃用。您可以进行内联转换,例如:但可能不如使用带有
OR
条件的LIKE
子句来执行。请注意:使用
NTEXT
/NVARCHAR
/NCHAR
/XML
数据时,最好始终在字符串文字前加上大写“N”前缀。如果不这样做,可能会导致与数据库默认排序规则关联的代码页不支持的任何字符的数据丢失。有关在 SQL Server 中一般使用排序规则/编码/Unicode/字符串的更多信息,请访问:https://Collations.Info /
An
IN
list is just short-hand for OR conditions. TheLIKE
clause works withNTEXT
andTEXT
fields. So, you can combine those two ideas to do this:However, as @marc_s suggested in a comment on the Question,
NVARCHAR(MAX)
is preferred as all string functions work with it (and theTEXT
,NTEXT
, andIMAGE
datatypes have been deprecated as of SQL Server 2005). You could do an inline convert such as:but likely that would not perform as well as using the
LIKE
clause withOR
conditions.Please note: When working with
NTEXT
/NVARCHAR
/NCHAR
/XML
data, it is best to always prefix string literals with an uppercase "N". Not doing so can result in data loss for any characters not supported by the code page associated with the default collation of the database.For more information on working with collations / encodings / Unicode / strings in general in SQL Server, please visit: https://Collations.Info/
来自http://msdn.microsoft.com/en-us/library/ms187993。 .aspx:
From http://msdn.microsoft.com/en-us/library/ms187993.aspx:
NText 不具有可比性,如果需要比较,请不要使用它,请使用 nvarchar(MAX)
NText is not comparable, don't use it if you need compare use nvarchar(MAX)