How to Remove a Not Null Constraint in BigQuery

To drop a NOT NULL constraint do the following:

alter table Database_test_IB1.employee alter column first_name drop NOT NULL;

IN THIS PAGE