Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

How do I list the tables in MySQL database?

user-image
Question ajoutée par Yasmeen Husam , Web Developer , Al Fahid Systems
Date de publication: 2018/11/25
Mohamed Yasser Mohamed
par Mohamed Yasser Mohamed , IT Specialist , Elwady

To list/show the tables in a MySQL database:

  1. Log into your database using the mysql command line client
  2. Issue the use command to connect to your desired database (such as, use mydatabase)
  3. Use the MySQL show tables command, like this:
show tables; MySQL ‘show tables’: A complete example

Here’s a slightly longer explanation. First, connect to your MySQL database using your MySQL client from your operating system command line:

$ mysql -u root -p

Next, after you're logged into your MySQL database, tell MySQL which database you want to use:

mysql> use pizza_store;

Now issue the MySQL show tables command to list the tables in the current database:

mysql> show tables;

For instance, if I issue this MySQL show tables command in one of my example MySQL databases, I'll see this output:

mysql> show tables; +-----------------------+ | Tables_in_pizza_store | +-----------------------+ | crust_sizes | | crust_types | | customers | | orders | | pizza_toppings | | pizzas | | toppings | +-----------------------+ 7 rows in set (0.00 sec)

That’s how you show the tables in the MySQL database using the MySQL command line client.

Mohamedvall ibrahim
par Mohamedvall ibrahim , freelancer , online

 

after you connected to your database , you can use :

 

SHOW TABLES;

More Questions Like This

Avez-vous besoin d'aide pour créer un CV ayant les mots-clés recherchés par les employeurs?