InterviewSolution
Saved Bookmarks
| 1. |
Which value will show an error when stored in float(4,2)?(a) 12.11(b) 13.1(c) 1.12(d) 123.44This question was posed to me by my college professor while I was bunking the class.The doubt is from MySQL Datatypes topic in division Data Types of MySQL |
|
Answer» RIGHT answer is (d) 123.44 Easiest EXPLANATION: “FLOAT(4,2)” cannot store more than 4 digits. |
|