当前位置:网站首页>Cannot compare or sort text, ntext, and image data types
Cannot compare or sort text, ntext, and image data types
2022-08-05 07:11:00 【51CTO】
Recently, when developing a file management system, I encountered a problem: the original local database is SQL2008, and there is a field SharedUserId of nvarchar(max) type, which is occasionally queriedSQL statement used...AND SharedUserId
So, I even changed the local database field type to text, and then tested it, and a similar error was reported (even the SQL2008 is in English):
After searching on the Internet, the original query statement is slightly modified, and it works: ...AND SharedUserId replaced by ...AND DATALENGTH(SharedUserId) > 0 AND SharedUserIdIS NOT NULL
边栏推荐
- Technical Analysis Mode (7) Playing the Gap
- 浮点数基础知识
- 基于快速行进平方法的水面无人船路径规划
- IO进程线程->进程间的通信->day7
- Modeling of the MAYA ship
- 一天学会从抓包到接口测试,通过智慧物业项目深度解析
- After working for 3 years, I recalled the comparison between the past and the present when I first started, and joked about my testing career
- 开源中国活动合作说明书
- 栈与队列的基本介绍和创建、销毁、出入、计算元素数量、查看元素等功能的c语言实现,以及栈的压入、弹出序列判断,栈结构的链式表示与实现
- Nacos cluster construction
猜你喜欢
随机推荐
MySQL: JDBC programming
2022 crane driver (limited bridge crane) exam question bank and simulation test
腾讯实习总结
矩阵的构造
性能提升400倍丨外汇掉期估值计算优化案例
Redis
Falsely bamboo brother today and found a localization of API to use tools
(JLK105D)中山爆款LED恒流电源芯片方案
开源中国活动合作说明书
【Dynamic type detection Objective-C】
概率与期望部分题解
MySQL: basic part
Mysql master-slave delay reasons and solutions
技术分析模式(十)头肩图案
基于快速行进平方法的水面无人船路径规划
AH8669-AC380/VAC220V转降5V12V24V500MA内电源芯片IC方案
Modeling of the MAYA ship
Day9 of Hegong Daqiong team vision team training - camera calibration
《PyTorch深度学习实践》第十一课(卷积神经网络CNN高级版)
二叉搜索树问题









