InterviewSolution
Saved Bookmarks
| 1. |
The datatype SMALLINT stores ___________(a) 16 bit(b) 32 bit(c) 48 bit(d) 8 bit |
|
Answer» Correct option is (a) 16 bit For explanation I would say: In MySQL, the numeric datatypes are many. A numeric datatype used in MySQL has its own range in terms of bits. The SMALLINT datatype stores signed and unsigned values of 16 bits. |
|