InterviewSolution
Saved Bookmarks
| 1. |
Which storage engine in MySQL provides foreign key support?(a) TRANSACTION(b) InnoDB(c) MyISAM(d) MEMORY |
|
Answer» The correct answer is (b) InnoDB The best explanation: In MySQL, there are a list of storage engines to choose from. Each storage engine provides its own set of facilities. The foreign key facilities are provided by the InnoDB storage engine. |
|