Re: update table

2020-10-26 Thread ling miao
Hi Doris don't support `update` right now. There are two solutions: 1. Use 'delete' + 'insert' 2. Create a unique table These two solutions are suitable for different situations, please refer to the official documents for how to use them http://doris.apache.org/ You are welcome to use doris, you

Re: update table

2020-10-26 Thread Zhao Chun
Hi Doris don't support 'update' statement right now. If you want to update a table, you should create table with `unique key`. They you can insert a new row to overwrite the old one. Thanks, Zhao Chun Murugan Muthusamy 于2020年10月27日周二 上午2:33写道: > Hi, > > I am using Master branch and running th