You have a BigQuery table with a REQUIRED column that you now need to allow NULL values. You also need to add two new nullable columns. Which THREE steps are required to achieve this schema evolution? (Choose 3)
ALTER TABLE ... ALTER COLUMN SET DATA TYPE or SET OPTIONS can change mode to NULLABLE.
Why this answer
BigQuery requires exporting data, modifying the schema, and importing data or using SQL statements. The schema can be updated via `bq update` or ALTER TABLE. Simply adding columns is possible, but changing from REQUIRED to NULLABLE requires recreation or ALTER TABLE CHANGE COLUMN.