

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create boolean column in MySQL with false as default value?
To create a column with ‘false’ as the default value, we can use the concept of “default” at the time of creation of the table.
Note − 0 represents false and 1 represents true.
Creating a table using “default” false.
mysql> create table TrueFalseTable -> ( -> Adult boolean default false -> ); Query OK, 0 rows affected (0.65 sec)
Inserting records with no value, since we have set “default” above.
mysql> insert into TrueFalseTable values(); Query OK, 1 row affected (0.16 sec)
To display records.
mysql> select *from TrueFalseTable;
The following output shows that the default is set to Boolean false i.e. 0
+-------+ | Adult | +-------+ | 0 | +-------+ 1 row in set (0.00 sec)
- Related Questions & Answers
- How to modify column default value in MySQL?
- Adding a new column with the current time as a default value in MySQL?
- How to revert rows to default column value in MySQL?
- Create MySQL datetime column with default 0000-00-00?
- How can I create a MySQL boolean column and assign value 1 while altering the same column?
- How to set NOW() as default value for datetime datatype in MySQL?
- Set default value to a JSON type column in MySQL?
- How to check whether column value is NULL or having DEFAULT value in MySQL?
- Create a Boolean object from Boolean value in Java
- Updating boolean value in MySQL?
- How to set MySQL default value NONE?
- How do I set the default value for a column in MySQL?
- How to update MySQL column with random value?
- How to create sequential index value for binary column assigning 0 to FALSE values in R data frame?
- How to set default Field Value in MySQL?
Advertisements