If you connect to a database and run the query SHOW TABLES;
, it will return a list of all tables in that database.
You can use criteria to search more precisely:
SHOW tables WHERE Tables_in_test ='triangle'; +----------------+ | Tables_in_test | +----------------+ | triangle | +----------------+
You need to modify the column names to match your database.
Tables_in_[database_name]