InterviewSolution
Saved Bookmarks
| 1. |
Which datatype is used for a fixed length binary string?(a) VARCHAR(b) BINARY(c) VARBINARY(d) BLOB |
|
Answer» Right answer is (b) BINARY Easiest explanation: MySQL has a variety of string datatypes for use. Strings can hold arbitrary binary data. All the four options are string type names. BINARY is used for a fixed length binary string. |
|