Deleting DataΒΆ

In Drizzle you can make use of DELETE in order to delete a single record (or multiple records) of data from a table.

A typical query might be:

DELETE FROM table_1;

Previous topic

Data Manipulation Language

Next topic

Inserting Data

This Page