(DEPRECATED) Apache Flink User Mailing List archive.
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
1095193290@qq.com
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
how to split a column value into multiple rows in flink sql?
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
♦
♦
|
Re: how to split a column value into multiple rows in flink sql?
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