Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何比较Image数据类型?
Image
我需要将存储在数据库中的文件与上传的文件进行比较但它说Image无法比较数据类型我什至尝试转换为nchar
nchar
(CONVERT(char(1000), FileData)
谁能帮我?
不要使用image它已弃用的数据类型。
image
varbinary(max)而是使用没有所有限制的替换数据类型image
varbinary(max)
同时,您可以cast(FileData as varbinary(max))允许比较。
cast(FileData as varbinary(max))