MySQL: how to get list of tables using ODBC

I am connecting to MySQL database via terminal which only has a program with ODBC connection to MySQL database. I can put queries into the program, but not directly access MySQL.

Is there a way to query the DB for a list of tables?

+1


source to share


1 answer


There is a SQL query:

Show tables;

      



You must fulfill this request.

+4


source







All Articles