Domanda

I have one table that has Image Data type column, that column contains Pdf and txt file.

My question is how to search any word with "LIKE" in Sql Exemple

Select * from tablename where ImageColumn LIKE @searchingword
È stato utile?

Soluzione

You can try this, not sure how it will react to PDF file though...

select *
from dbo.tablename
where convert(varchar(max),convert(varbinary(max), ImageColumn)) LIKE @searchingword

Altri suggerimenti

select
from dbo.tablename
where convert(varchar(max),convert(varbinary(max), ImageColumn)) LIKE '%' + 
CHAR(0x00)+ CHAR(0x01)+ CHAR(0x02) +'%'**
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top