(DEPRECATED) Apache Flink User Mailing List archive.
Login
Register
Search
everywhere
only in this topic
Advanced Search
how to split a column value into multiple rows in flink sql?
Classic
List
Threaded
♦
♦
Locked
2 messages
Options
Loading...
Subscribe via email
Move topic
Pin topic
Unpin topic
Lock topic
Unlock topic
Delete this topic
Delete this topic
Change title and meta tags
Embed post
Permalink
1095193290@qq.com
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
More
Loading...
Reply to author
Edit post
Move post
Delete this post
Delete this post and replies
Change post date
Print post
Permalink
Raw mail
May 07, 2021; 6:28pm
how to split a column value into multiple rows in flink sql?
8 posts
Hi
For example , a table like this:
A B C
------------------
a1 b1 c1,c2,c3
-------------------
how to split c1,c2,c3 into multiple rows like this in flink sql function:
A B C --------
a1 b1 c1 a1 b1 c2 a1 b1 c3
Thank you
[hidden email]
Yik San Chan
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
More
Loading...
Reply to author
Edit post
Move post
Delete this post
Delete this post and replies
Change post date
Print post
Permalink
Raw mail
May 10, 2021; 2:24am
Re: how to split a column value into multiple rows in flink sql?
97 posts
Hi,
Maybe try row-based flatMap operation in table api. It is available on flink
1.13.x
https://ci.apache.org/projects/flink/flink-docs-master/docs/dev/table/tableapi/#flatmap
Best,
Yik San
--
Sent from:
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/
Free forum by Nabble
Edit this page