InterviewSolution
Saved Bookmarks
| 1. |
Which datatype means a variable length non binary string?(a) VARCHAR(b) BINARY(c) VARBINARY(d) BLOB |
|
Answer» Right answer is (a) VARCHAR Explanation: In MySQL, there are a wide variety of string datatypes for use. Strings can even hold image and sound data. All the four options are string type names. VARCHAR represents a variable length non binary string. |
|