I reinstalled WAMP and did not export the database (.sql), but I have the ".ibd" and ".frm" files.
After installation, I created a blank database and copied all the ".ibd" and ".frm" files to the folder, but when trying to open the table via phpmyadmin, an error is returned and informs that the table does not exist.
I tested the smallest table, deleted the files, created the table, and ran the query below:
ALTER TABLE bd.tabela DISCARD TABLESPACE;
Then I copied the ".ibd" and ".frm" backup files to the folder and executed the query below:
ALTER TABLE bd.tabela IMPORT TABLESPACE;
But there are 2 problems:
How do I restore my tables and their data?