InterviewSolution
Saved Bookmarks
| 1. |
The bit-field values are prefixed with __________(a) 0b(b) 0bit(c) bit-(d) ‘bit’ |
|
Answer» 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. |
|