You can still use the .sqlQuery(...) to create a common table there, then
converts the table into a DataStream,
with this DataStream, you can add the multiple sink functions you like.
izual 于2020年11月2日周一 下午5:18写道:
> Hi, Danny:
>
>
> Thanks for your help.
>
>
> As in the question, some result wa
You can still convert the datastream to table and register it with method
void TableEnvironment.createTemporaryView(String path, Table view)
Then create a StatementSet with
StatementSet TableEnvironment.createStatementSet(),
With the StatementSet, you can execute multiple insert statements
alto