I need to retrieve the records from a hive table that has specific string .
My hive table has a column with data like this firstpath\secondpath\secondpathxyz
I want to fetch all records which has \secondpath\.For this I am using query like below
select* from table where columnname like %\\secondpath\\% but it always return empty rows for me .I tried even escaping with \\\\ (like %\\\\secondpath\\\\%).But this also did not help .
The above query does return me result when I use like %secondpath% but it does not check for backslash .
Any help on this will be appreciated .