How to change one attribute in a table using T-SQL to allow nulls (not null --> null)? Alter table maybe?
For MySQL, MariaDB
ALTER TABLE [table name] MODIFY COLUMN [column name] [data type] NULL
Use MODIFY COLUMN instead of ALTER COLUMN.
MODIFY COLUMN
ALTER COLUMN