Anonymous
Not applicable

@Gil Gonong​ :

In Databricks, you can add a column to an existing table using the ALTER TABLE statement in SQL. Here is an example:

ALTER TABLE table_clone ADD COLUMN col_name1 STRUCT<
    type: STRING,
    values: ARRAY<STRING>
>

Note that you need to have the necessary privileges to modify the table. If you are not the owner of the table, you need to have been granted the ALTER privilege by the owner or an administrator.