> For the complete documentation index, see [llms.txt](https://metis-montessori-lyceum.gitbook.io/informatica/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://metis-montessori-lyceum.gitbook.io/informatica/modules/databases/7-tabellen-muteren/drop.md).

# Drop

Met het commando DROP kun je een tabel verwijderen. De basis syntax is:

```sql
DROP [TABLE] tabelnaam; 
```

De query om de leerling-tabel te verwijderen is als volgt:

```sql
DROP [TABLE] leerling;
```

Wees hier wel voorzichtig mee. Een verwijderde tabel kun je niet ongedaan maken. Je kunt natuurlijk wel het bibliotheek script opnieuw uitvoeren zodat alles weer wordt teruggezet.
