I am looking for the syntax to add a column to a MySQL database with a default value of 0
Reference
Like this?
ALTER TABLE `tablename` ADD `new_col_name` INT NOT NULL DEFAULT 0;