标签: hadoop hive hiveql
从txt file创建表并将数据加载到此表。 select * from tablename显示所有记录但是当我运行带有条件的select语句时,查询成功运行(hive没有错误提示)但是没有显示结果。表存在于文件夹中。
txt file
select * from tablename
我运行了以下两个查询 -
select * from plan1 where contid = "%H0001%"; select * from plan1 where contid = "H0001";
任何想法? TIA