使用hadoop的hive中的基本sql查询问题
伙计们我正面临SQL基本命令的问题。我正在研究用于学习大数据分析的hadoop和hive软件。我在名为cencus
的hadoop文件系统上创建一个表。在终端我只需打开蜂箱,然后就进行就可以了简单的SQL查询,然后将其保存在外部Excel .csv文件使用hadoop的hive中的基本sql查询问题
hive -e 'select * from cencus' > '/home/training/hackathon/out.csv
它工作正常,并存储所有的表信息到外部文件
hive -e 'select * from sencus where education=children' > /home/training/hackathon/out.csv
它并不总是工作表现异常有没有降低运营商 我试过很多时间来查询更改为:
hive -e 'select * from sencus where education=''children'' > /home/training/hackathon/out.csv hive -e 'select * from sencus where education="children"' > /home/training/hackathon/out.csv
但没有我请告诉我我需要做什么?
回答:
我相信下面的查询可以工作。
hive -e 'select * from sencus where education="children";' > /home/training/hackathon/out.csv
以上是 使用hadoop的hive中的基本sql查询问题 的全部内容, 来源链接: utcz.com/qa/265351.html