hive模糊查询
在Mysql中使用的 like '%刘%' 模糊查询 在Hive中不适用 ,应该写成
select * from table where name like concat("%","刘","%") ;