> ## Documentation Index
> Fetch the complete documentation index at: https://docs.regatta.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Drop Table

Now we will remove the table and get back to an empty database. First, let’s run:

```SQL theme={null}
SHOW TABLES
```

This will present all the tables in the database.

Now, perform the following SQL DROP command:

```SQL theme={null}
DROP TABLE employees
```

And don’t forget to also drop the workers table:

```SQL theme={null}
DROP TABLE workers
```

Then run:

```SQL theme={null}
SHOW TABLES
```

And indeed, there are no tables in the database.
