InterviewSolution
Saved Bookmarks
| 1. |
What is the name of the format file for a table named my_tbl?(a) my_tbl.fmt(b) my_tbl.frm(c) my_tbl.fmr(d) my_tbl.ftm |
|
Answer» Correct answer is (b) my_tbl.frm To elaborate: Every time a table is created in MySQL, it creates a disk file containing the format of the table. It has two components, namely, base name (here, ‘my_tbl’) and an extension (here, ‘frm’). |
|