SQLite – 11 – Deleting Records with DELETE

Deleting records from a database table is a fundamental operation in database management. It allows you to remove unwanted or obsolete data, keeping your database clean and efficient. In SQLite, the DELETE statement is used to remove one or more rows from a table based on specified conditions. This feature is crucial for maintaining the integrity and performance of your database. In this discussion, we will explore how to delete records using the DELETE statement in SQLite, its syntax, and practical examples.

Basic Syntax for DELETE Statement:

The basic syntax of the DELETE statement in SQLite is as follows:

DELETE FROM table_name WHERE condition;

In this syntax:

  • table_name is the name of the table from which you want to delete records.
  • WHERE condition is the condition that specifies which rows should be deleted. If you omit the WHERE clause, all rows in the table will be deleted.

Example 1: Deleting a Single Record

Suppose you have a table called Employees, and you want to delete a specific employee with an EmployeeID of 101:

DELETE FROM Employees WHERE EmployeeID = 101;

In this query:

  • We specify the table name as Employees.
  • We use the WHERE clause to identify the record to be deleted based on the EmployeeID value.

This query will remove the employee with an EmployeeID of 101 from the Employees table.

Example 2: Deleting Multiple Records

You can delete multiple records by specifying a condition that matches multiple rows. For instance, if you want to delete all employees with a salary less than 30,000:

DELETE FROM Employees WHERE Salary < 30000;

In this query:

  • We specify the table name as Employees.
  • We use the WHERE clause to identify the records to be deleted based on the condition that Salary is less than 30,000.

This query will delete all employees with a salary below 30,000 from the Employees table.

Example 3: Deleting All Records Without a WHERE Clause

If you omit the WHERE clause, the DELETE statement will remove all rows in the table, effectively clearing the entire table. For example, if you want to remove all records from the Orders table:

DELETE FROM Orders;

In this query:

  • We specify the table name as Orders.
  • Since there is no WHERE clause, this query will delete all records from the Orders table.

Example 4: Deleting Records Using Subqueries

SQLite allows you to use subqueries to identify the records to be deleted. For instance, if you want to delete all students who are not currently enrolled in any courses:

DELETE FROM Students WHERE StudentID NOT IN ( SELECT DISTINCT StudentID FROM Enrollments );

In this query:

  • We specify the table name as Students.
  • We use a subquery within the WHERE clause to select the StudentID values from the Enrollments table and identify students who are currently enrolled.
  • The NOT IN condition is used to delete students who are not in the list of enrolled students.

This query will delete students who are not currently enrolled in any courses.

Example 5: Deleting Records with LIMIT

You can limit the number of records to be deleted using the LIMIT clause. For example, if you want to delete only the first 5 orders from the Orders table:

DELETE FROM Orders LIMIT 5;

In this query:

  • We specify the table name as Orders.
  • We use the LIMIT clause to limit the deletion to the first 5 rows in the Orders table.

This query will delete only the first 5 records from the Orders table.

Conclusion:

The DELETE statement in SQLite is a crucial tool for removing records from a database table based on specified conditions or criteria. It allows you to keep your database clean and efficient by removing unwanted or obsolete data. Understanding how to use the DELETE statement effectively is essential for database administrators and developers to maintain data integrity and optimize database performance.