Common MySQL Interview Questions
Storage Engine Comparison
- In InnoDB, primary key index and data are stored together, with the primary key index B+ tree containing complete data rows; in MyISAM, index and data are stored separately, with the B tree storing index values and physical addresses of rows
- InnoDB supports ACID transactions, MyISAM does not
- InnoDB supports row-level locking, MyISAM does not
What is Page Split
When inserting new data into a full index page (usually 16KB), the storage engine will split the current page into two pages to accommodate the new data

Throwable has two subclasses: Exception and Error