MySQL DEFAULT Constraint
The DEFAULT constraint in MySQL automatically assigns a default value to a column in a table. It provides the default value when no value is specified for that column in an INSERT statement. The DEFAULT value can be a literal…

