InterviewSolution
Saved Bookmarks
| 1. |
INT2 maps to MySQL type _____________(a) TINYINT(b) SMALLINT(c) MEDIUMINT(d) BIGINTThis question was addressed to me in quiz.My question is based upon Choosing Data Types topic in portion Data Types of MySQL |
|
Answer» CORRECT OPTION is (b) SMALLINT Easiest explanation: In order to facilitate the use of CODE written for SQL implementations from other vendors, MySQL maps the data types from the other vendor types to the appropriate MySQL type. |
|