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

ALTER TABLE mydataset.mytable
ALTER COLUMN price
SET OPTIONS (
  description="Item Price"
)

Explanation

This statement is not supported for external tables.

Syntax reference

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