Frage

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
War es hilfreich?

Lösung

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

Andere Tipps

select
from dbo.tablename
where convert(varchar(max),convert(varbinary(max), ImageColumn)) LIKE '%' + 
CHAR(0x00)+ CHAR(0x01)+ CHAR(0x02) +'%'**
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top