Answers for "Create boolean column in MySQL with false as default value?"

SQL
0

Create boolean column in MySQL with false as default value?

create table mytable (
     mybool boolean not null default 0
);
Posted by: Guest on February-05-2022

Code answers related to "Create boolean column in MySQL with false as default value?"

Code answers related to "SQL"

Browse Popular Code Answers by Language