Podcast
Questions and Answers
VARCHAR() can store a variable section up to ____ characters long.
VARCHAR() can store a variable section up to ____ characters long.
255
TEXT data type can store a string up to _____ characters long.
TEXT data type can store a string up to _____ characters long.
65535
BLOB data type can store a string up to _____ characters long.
BLOB data type can store a string up to _____ characters long.
65535
MEDIUMTEXT data type can store a string up to _____ characters long.
MEDIUMTEXT data type can store a string up to _____ characters long.
Signup and view all the answers
ENUM is used to store text value chosen from a list of predefined text values. It is a form of _____ customization.
ENUM is used to store text value chosen from a list of predefined text values. It is a form of _____ customization.
Signup and view all the answers
SET data type is used to store text values chosen from a list of predefined text values. It can have ______ values.
SET data type is used to store text values chosen from a list of predefined text values. It can have ______ values.
Signup and view all the answers
BOOL is a synonym for TINYINT(1) and is used to store _____ values.
BOOL is a synonym for TINYINT(1) and is used to store _____ values.
Signup and view all the answers
BINARY data type stores texts in a _____ format.
BINARY data type stores texts in a _____ format.
Signup and view all the answers
VARBINARY is similar to VARCHAR, but texts are stored in _____ format.
VARBINARY is similar to VARCHAR, but texts are stored in _____ format.
Signup and view all the answers
INT data type is an example of _____ numeric data type in MySQL.
INT data type is an example of _____ numeric data type in MySQL.
Signup and view all the answers