InterviewSolution
Saved Bookmarks
| 1. |
The data rows of a MyISAM table are stored in __________(a) data file(b) index file(c) log file(d) error file |
|
Answer» Correct choice is (a) data file The explanation is: The data rows of the MyISAM table are stored in a data file and the index values are stored in a separate index file. In MySQL, for a MyISAM table, there can be more than one indexes. |
|