SHOW TABLES;
Look for the table you're trying to access in the output.
SELECT * FROM `your-table-name`;
SELECT * FROM database
name.table
name;
Or, by selecting the correct database before running your query:USE database_name;
6. If recently altered/renamed tables or migrated data, ensure these operations completed successfully and didn't lead to the loss or renaming of the table in question.
Let Dr. Droid create custom investigation plans for your infrastructure.
Start Free POC (15-min setup) →