Below is the command to add a int data type column as default null to an existing table in mysql:
ALTER TABLE `YourTableName` ADD COLUMN `YourColumnName` INT NULL;
Below is the command to add a int data type column as default null to an existing table in mysql:
ALTER TABLE `YourTableName` ADD COLUMN `YourColumnName` INT NULL;