Pergunta

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
Foi útil?

Solução

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

Outras dicas

select
from dbo.tablename
where convert(varchar(max),convert(varbinary(max), ImageColumn)) LIKE '%' + 
CHAR(0x00)+ CHAR(0x01)+ CHAR(0x02) +'%'**
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top