Home » MYSQL » Data Types » Question
  1. The bit-field values are prefixed with __________.
    1. 'bit’
    2. bit-
    3. 0bit
    4. 0b
    5. 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.



Your comments will be displayed only after manual approval.