SQLite Delete details and instance code, sqlitedelete

Source: Internet
Author: User

SQLite Delete details and instance code, sqlitedelete

SQLite Delete

SQLite's DELETE query is used to DELETE existing records in the table. You can use the DELETE query with the WHERE clause to DELETE selected rows. Otherwise, all records will be deleted.

Syntax

The basic syntax of a delete query with a WHERE clause is as follows:

DELETE FROM table_nameWHERE [condition];

You can use the and or operator to combine N conditions.

Instance

Assume that the COMPANY table has the following records:

ID     NAME    AGE     ADDRESS   SALARY---------- ---------- ---------- ---------- ----------1      Paul    32     California 20000.02      Allen    25     Texas    15000.03      Teddy    23     Norway   20000.04      Mark    25     Rich-Mond  65000.05      David    27     Texas    85000.06      Kim     22     South-Hall 45000.07      James    24     Houston   10000.0

The following is an instance that deletes the customer whose ID is 7:

sqlite> DELETE FROM COMPANY WHERE ID = 7;

The COMPANY table now has the following records:

ID     NAME    AGE     ADDRESS   SALARY---------- ---------- ---------- ---------- ----------1      Paul    32     California 20000.02      Allen    25     Texas    15000.03      Teddy    23     Norway   20000.04      Mark    25     Rich-Mond  65000.05      David    27     Texas    85000.06      Kim     22     South-Hall 45000.0

If you want to DELETE all records from the COMPANY table, you do not need to use the WHERE clause. The DELETE query is as follows:

sqlite> DELETE FROM COMPANY;

Currently, the COMPANY table does not have any records because all records have been deleted using the DELETE statement.

Thank you for reading this article. I hope it will help you. Thank you for your support for this site!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.