Hi,
Using Flink Table object how can we print table contents, something like Spark show() method?
for example in the following:
tableEnv.registerDataSet("Orders", raw, "id, country, num, about");
Table results = tableEnv.sqlQuery("SELECT id FROM Orders WHERE id > 10");
How can I print the results variable contents?
Thanks