> For the complete documentation index, see [llms.txt](https://learnsql.gitbook.io/lernmysql/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learnsql.gitbook.io/lernmysql/untitled.md).

# show tables;

```
mysql> use ;
mysql> show tables;
+--------------------+
| Tables_in_learnsql |
+--------------------+
| Employees          |
+--------------------+
mysql> describe Employees;
+--------------+--------------+------+-----+---------+-------+
| Field        | Type         | Null | Key | Default | Extra |
+--------------+--------------+------+-----+---------+-------+
| Employees_ID | int(11)      | YES  |     | NULL    |       |
| Name         | varchar(255) | YES  |     | NULL    |       |
+--------------+--------------+------+-----+---------+-------+
```
