InterviewSolution
Saved Bookmarks
| 1. |
What will happen if the data being loaded into a text column exceeds the maximum size of that type?(a) Extra memory will be allocated(b) Process terminate(c) Data will be truncated(d) Depend on the systemI have been asked this question in an interview for internship.Asked question is from MySQL Datatypes topic in section Data Types of MySQL |
|
Answer» CORRECT CHOICE is (c) Data will be truncated To elaborate: Mysql cannot ALLOCATE DYNAMIC memory therefore if data exceeds the memory then EXTRA data will be truncated. |
|