Home » Bigquery » Tutorials » Alter column set options

BigQuery Alter column change description

Change column description, on a column in BigQuery

Alter column set options example

\nALTER TABLE mydataset.mytable\nALTER COLUMN price\nSET OPTIONS (\n  description="Item Price"\n)\n

Explanation

This statement is not supported for external tables.

Syntax reference

ALTER TABLE [IF EXISTS] table_name\nALTER COLUMN [IF EXISTS] column_name SET OPTIONS(column_set_options_list)