Pregunta

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
¿Fue útil?

Solución

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

Otros consejos

select
from dbo.tablename
where convert(varchar(max),convert(varbinary(max), ImageColumn)) LIKE '%' + 
CHAR(0x00)+ CHAR(0x01)+ CHAR(0x02) +'%'**
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top