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