InterviewSolution
Saved Bookmarks
| 1. |
What is the storage size in bytes required for the MEDIUMINT datatype?(a) 1(b) 2(c) 3(d) 4 |
|
Answer» The correct answer is (c) 3 The explanation is: The numeric datatypes used in MySQL vary over ranges. There are a variety of INT types in the type specification. TINYINT requires 1, SMALLINT requires 2 bytes and MEDIUMINT requires 3. |
|