Hi there,
in the usual databases, when adding new columns in a table, the value for already existing rows can be set via UPDATE statements.
How you guys do that in Clickhouse?
Do you create a new table with the same columns plus the new one, then copy all rows from the old table, and then drop the old table?
Or you create a new table with the new column only, and create a view joining the old and the new tables?
Or something else?
Thanks, Maxim