Aug 22, 2023
You just need to access your mysql database and run the following commands to show the database:
- To connect with your database: *Replace your db_name below:
#use <db_name>
- To list the tables:
#show tables;
- To show the content of the table: *Replace your table name with table_name below.
#select * from table_name;