I want to create a table in MySQL with a boolean column whose default value is false. But it\'s accepting NULL as default...
boolean
false
If you are making the boolean column as not null then the default 'default' value is false; you don't have to explicitly specify it.