InterviewSolution
Saved Bookmarks
| 1. |
INT3 maps to MySQL type _____________(a) TINYINT(b) SMALLINT(c) MEDIUMINT(d) BIGINT |
|
Answer» Right option is (c) MEDIUMINT To explain I would say: In order to facilitate the use of the code written for SQL implementations (reusability of code) from other vendors, MySQL maps the data types from the other vendor types to the appropriate MySQL type. |
|