The bit-field values are prefixed with __________
(a) 0b
(b) 0bit
(c) bit-
(d) ‘bit’
(a) 0b
(b) 0bit
(c) bit-
(d) ‘bit’
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The correct option is (a) 0b
The best explanation: 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.