MariaDB [learnsql]> show tables;
+--------------------+
| Tables_in_learnsql |
+--------------------+
| Employees |
| Orders |
| user |
+--------------------+
MariaDB [learnsql]> describe Employees;
+--------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------------+--------------+------+-----+---------+-------+
| Employees_ID | int(10) | YES | | NULL | |
| Name | varchar(111) | YES | | NULL | |
+--------------+--------------+------+-----+---------+-------+