问题:查询数据库语句报错“数据类型 text 和 varchar 在 equal to 运算符中不兼容。”
解决:
select * from 表名称
where cast(查询的字段名称 as varchar(max)) =’查询的值’
本文共 164 字,大约阅读时间需要 1 分钟。
问题:查询数据库语句报错“数据类型 text 和 varchar 在 equal to 运算符中不兼容。”
解决:
select * from 表名称
where cast(查询的字段名称 as varchar(max)) =’查询的值’
转载于:https://blog.51cto.com/haihuiwei/1772981