The bit-field values are prefixed with __________.
'bit’
bit-
0bit
0b
None of these
Correct Option: D
In MySQL, the bit-field values can be either written as b’value’ or 0bvalue. Here, value is a sequence of digits zero or/and one. For example, b’1010′ and 0b1010 are decimal value 10.