Is there a work around for using the ALTER TABLE command to add a column that is "NOT NULL"? for instance, can we add a NULL column, then change it to be NOT NULL in a two-step process? Thanks
regards,
Brian
regards,
Brian
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ALTER TABLE table_name ADD column_name VARCHAR(20) NOT NULL DEFAULT 'UNKNOWN'