Hi all, I experiment on Flink Table API & SQL and I have the following question; is there any way to execute DELETE queries using Flink SQL? Thanks in advance, Konstantinos |
Hi Papadopoulos, Unfortunately no, there is no DELETE or MODIFY queries, you should create new table as a result of query which will filter records from existing one From: Papadopoulos, Konstantinos <[hidden email]>
Hi all, I experiment on Flink Table API & SQL and I have the following question; is there any way to execute DELETE queries using Flink SQL? Thanks in advance, Konstantinos |
The case I have in mind was to have an external JDBC table sink and try to delete a number of or all rows of the target DB table. Is it possible using Flink SQL? From: Vasyl Bervetskyi <[hidden email]>
Hi Papadopoulos, Unfortunately no, there is no DELETE or MODIFY queries, you should create new table as a result of query which will filter records from existing one From: Papadopoulos, Konstantinos <[hidden email]>
Hi all, I experiment on Flink Table API & SQL and I have the following question; is there any way to execute DELETE queries using Flink SQL? Thanks in advance, Konstantinos |
Hi
@Papadopoulos, Konstantinos I think you can try something like this: JDBCAppendTableSink sink = JDBCAppendTableSink.builder() Or you can build your own Sink code, where you can delete rows of DB table. Best, JingsongLee
|
Free forum by Nabble | Edit this page |