EasyBasic SELECT
Add a NOT NULL constraint
The query
SQL
ALTER TABLE employees
ALTER COLUMN email SET NOT NULL;Note
“Ensures the column cannot accept NULL values. Fails if existing rows have NULLs in this column.
ALTER TABLE employees
ALTER COLUMN email SET NOT NULL;Note
“Ensures the column cannot accept NULL values. Fails if existing rows have NULLs in this column.