博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql & Hive 导入导出数据
阅读量:5227 次
发布时间:2019-06-14

本文共 1204 字,大约阅读时间需要 4 分钟。

---王燕行转列sqlselect split(concat_ws(',',collect_set(cast(smzq as  string))),',')[1] ,split(concat_ws(',',collect_set(cast(smzq as  string))),',')[2] from wyy;---mysql 导入 导出数据部分--mysql 导入load data infile 'C:\\Users\\wanghongbo1\\Downloads\\sum.csv' into table `mars_tianchi_sum` fields terminated by ',' optionally enclosed by '"' escaped by '"' lines terminated by '\n';--mysql导出select * from mars_tianchi_result_avg15 into outfile 'e://avg15.csv' fields terminated by ','optionally enclosed by ''lines terminated by '\n';--hive  建表及导入数据部分create table mars_tianchi_songs     (song_id string,     artist_id string,     publish_time string,     song_init_plays string,     Language string,     gender string     )     ROW FORMAT DELIMITED     FIELDS TERMINATED BY ','     STORED AS TEXTFILE;--hive 导入load data local inpath '/test_whb/mars_tianchi_songs.csv' into table mars_tianchi_songs; --hive 导出INSERT OVERWRITE local DIRECTORY'/home/wizad/lmj/inserest2'ROW FORMAT DELIMITED FIELDS TERMINATED BY','select * fromwizad_mdm_dev_lmj_edition_insterest 导入到本地可直接用-e命令,默认使用\t分隔:hive -e 'use wizad;select * fromwizad_mdm_dev_lmj_edition_insterest;'>> mytest

  

转载于:https://www.cnblogs.com/wangjunyan/p/5566943.html

你可能感兴趣的文章
迅为iTOP-4418开发板兼容八核6818开发板介绍
查看>>
HTML标签_1
查看>>
程序员的自我修养九Windows下的动态链接
查看>>
细说WebSocket - Node篇
查看>>
Extjs控件之 grid打印功能
查看>>
Jquery操作cookie,实现简单的记住用户名的操作
查看>>
【原创】大数据基础之Zookeeper(4)应用场景
查看>>
静态变量数组实现LRU算法
查看>>
中文系统 上传file的input显示英文
查看>>
比callback更简洁的链式执行promise
查看>>
android permission
查看>>
【译】在Asp.Net中操作PDF - iTextSharp - 使用字体
查看>>
.net 文本框只允许输入XX,(正则表达式)
查看>>
Python 第四十五章 MySQL 内容回顾
查看>>
实验2-2
查看>>
MongoDB遇到的疑似数据丢失的问题。不要用InsertMany!
查看>>
android smack MultiUserChat.getHostedRooms( NullPointerException)
查看>>
实用的VMware虚拟机使用技巧十一例
查看>>
监控工具之---Prometheus 安装详解(三)
查看>>
不错的MVC文章
查看>>