How to search hexadecimal characters from a SQL Server table? Actually I tried like below but it is searching all zeroes in the field.
select Email,*
from address
where CHARINDEX(convert(varchar, Ascii(0x00)), Email) > 0
Thanks
How to search hexadecimal characters from a SQL Server table? Actually I tried like below but it is searching all zeroes in the field.
select Email,*
from address
where CHARINDEX(convert(varchar, Ascii(0x00)), Email) > 0
Thanks