What is the .frm.ibd file in ubuntu mysql?
.ibd
: stores metadata of each table, including the definition of the table structure, etc.; it cannot be read directly.
.frm
: stores the metadata of each table, including the definition of the table structure, etc.; it can be opened directly.
After mysql is reinstalled, data can be restored through .idb
and .frm
files