InterviewSolution
Saved Bookmarks
| 1. |
If a column is expected to store values up to 2 million, the best datatype for it is _____________(a) SMALLINT(b) TINYINT(c) MEDIUMINT(d) BIGINT |
|
Answer» The correct choice is (d) BIGINT Explanation: The different numeric types used in MySQL are used to store different range of values. To store values of the order of a million, the MEDIUMINT or BIGINT datatype is sufficient. |
|