"list all tables in a database with mysqli" Code Answer

4

there are many ways.

show tables

is the most simple sql statement for doing that. you can also take a look at information_schema.tables if you want to have more details or do some filtering or such.

select * from information_schema.tables where table_schema like 'your_database';
By Naveen Kumar R B on June 23 2022

Answers related to “list all tables in a database with mysqli”

Only authorized users can answer the Search term. Please sign in first, or register a free account.