80
MariaDB DELETE Data
The MariaDB DELETE statement is used to delete one or more records from the table in MariaDB database.
Syntax:
DELETE data using one condition
Let’s delete data using one condition.
Example:
Query is executed successfully. You can now see that selected data is deleted.
Output:
You can see that “Mahesh” is not available in table.
DELETE data using multiple condition
Query is executed successfully. You can now see that selected data is deleted.
Output:
You can see that “Aryan” is not available in table.
Next TopicMariaDB Truncate Table