select * from cancel where deduction_percentage like '%100% cancellation charge%';
SemanticException [Error 10014]: Line 1:27 Wrong arguments ''%100% cancellation charge%'': No matching method for class org.apache.hadoop.hive.ql.udf.UDFLike with (array, string). Possible choices: FUNC(string, string)
deduction_percentageis an Array.likeworks with strings. Concatenate array usingconcat_wsor use array_contains(Array, value) function. Or compare array element using[]- leftjoin