Hi,
I'm trying to run this query using SQL and using DBR 17.3 cluster. But I get a syntax error.
ALTER VIEW catalog.schema.view
ALTER COLUMN column_name
SET TAGS (`METADATA` = `xyz`);
But below query works-
SET TAG ON COLUMN catalog.schema.view.column_name
`METADATA` = `xyz`;
Is the first format not supported in databricks SQL or there is any problem with the syntax.