从“取消”中选择“扣除百分比”,如“%100%取消费用%”;semanticexception[error 10014]:行1:27错误参数“”%100%取消费用%“”:类org.apache.hadoop.hive.ql.udf.udflike没有与(数组,字符串)匹配的方法。可能的选择:func(string,string)
fafcakar1#
你的百分比看起来像数组数据类型。您编写的查询仅适用于字符串数据类型字段。
select * from cancel where concat_ws(',',deduction_percentage) like '%100% cancellation charge%';
1条答案
按热度按时间fafcakar1#
你的百分比看起来像数组数据类型。您编写的查询仅适用于字符串数据类型字段。