I am trying to create a new column as a boolean type, but I cannot find it in the list. Any help?
5.2.37 and ubuntu 11.10
Unfortunately, there is no such thing as "boolean" in MySql.
I think you need tinyint(1) .
tinyint(1)
This question has more: What type of MySQL data is used to store boolean values
Skip the workstation and use the command line
alter table my_table add column my_column BOOLEAN;
Create a Boolean Column in a table with false false
ALTER TABLE table_name ADD field_name tinyint(1);
if default is true
ALTER TABLE table_name ADD field_name tinyint(0);
Source: https://habr.com/ru/post/909000/More articles:The interval establishes an algebra in R (union, intersection, differences, inclusion, ...) - rData encapsulation and data flow in PHP - objectDMA streaming in PCIE kernel driver - linuxHow to get Intellij IDEA to load JavaDoc - javaHow to tell TM2 browser not to show specific folders - textmate2unobtrusive knockout without pollution at home - unobtrusive-javascriptReplacement for huge case statements - javaTell Emacs to Never Insert Tabs - emacsCenter the text vertically in the list bar - androidBlock version of performSelectorOnMainThread: withObject: waitUntilDone: - multithreadingAll Articles