Member since
09-26-2015
14
Posts
27
Kudos Received
7
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
15665 | 08-24-2017 09:37 PM | |
1742 | 03-30-2017 06:40 PM | |
7604 | 03-23-2017 06:22 PM | |
5502 | 03-06-2017 10:01 PM | |
3983 | 02-15-2017 08:56 PM |
04-13-2020
04:56 AM
you can try https://my.oschina.net/leejun2005/blog/120463 For example, select a.timestamp, get_json_object(a.appevents, '$.eventid'), get_json_object(a.appenvets, '$.eventname') from log a; should be changed to select a.timestamp, b.* from log a lateral view json_tuple(a.appevent, 'eventid', 'eventname') b as f1, f2; UDTF(User-Defined Table-Generating Functions) 用来解决 输入一行输出多行(On-to-many maping) 的需求。
... View more
02-16-2017
03:15 AM
I found a solution to export this kind of data to any RDBS in the form of UTF8 or any other character set by giving the specific character set after the database/host name.
... View more