InterviewSolution
Saved Bookmarks
| 1. |
The storage size in bytes required for the MEDIUMINT datatype is ___________(a) 1(b) 2(c) 3(d) 4 |
|
Answer» Right option is (c) 3 Easy explanation: 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. |
|