'Update function in Presto
I've seen in this post from a year ago (Updating a SQL table in presto) that Presto does not support update statements. Has this changed? Is there an alternative way to achieve an update statement on an existing table with existing records?
update table_a set attr1 = 1 where id in (10001096322)
Solution 1:[1]
Not exactly with Presto, but Apache Hudi is often integrated with Presto for these use cases. https://prestodb.io/blog/2020/08/04/prestodb-and-hudi
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Greg |
