Mysql List Tables

The Tutorial illustrate an example from 'Mysql List Tables'. To
understand this example we use show tables query that return the list of
tables in database name 'Table_in_girish'. The Syntax used to display the list of
tables in database are given below:
show tables: The showtables is used to show the list of tables present
in database.
Query to list the tables in the database:
mysql> show tables;
+------------------+
| Tables_in_girish |
+------------------+
| emp |
| employee |
| employee1 |
| employee2 |
| employee_log |
| employees1 |
| news |
| newscategories |
| newscount |
| newstrack |
| person |
| roseindia |
| shelf |
| stu_table1 |
| timetable |
+------------------+
15 rows in set (0.00 sec)
|

|