The Data Management Center

SQL DELETE


David Haertzen David Haertzen, Tutorial Author
Check out our
Data Warehousing Tutorial.

HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX | Bookmark and Share
infogoal.com HOME
SQL OVERVIEW

SQL BASICS
SQL SELECT
SQL WHERE
SQL INSERT
SQL UPDATE
SQL DELETE

SQL ADMINISTRATION
SQL CREATE DATABASE
SQL DROP DATABASE
SQL CREATE TABLE
SQL ALTER TABLE
SQL DROP TABLE
SQL CREATE INDEX
SQL DROP INDEX
SQL ADD FOREIGN KEY
SQL DROP FOREIGN KEY
SQL CREATE VIEW
SQL DROP VIEW

SQL ADVANCED
SQL CONCAT
SQL SUBSTRING
SQL TRIM
SQL AND & OR
SQL IN
SQL BETWEEN
SQL LIKE
SQL DISTINCT
SQL GROUP BY
SQL AGGREGATE
SQL HAVING
SQL ORDER BY
SQL JOIN
SQL OUTER JOIN

SQL SYNTAX
SQL BOOKREVIEWS

Data Model Resource Book Vol 1
Data Model Resource Book Vol 2
Previous | Next

SQL > SQL Basics > SQL DELETE Statement


What is the SQL DELETE Statement?

The SQL SELECT statement is the SQL command that removes data from an SQL database.

Why Use the SQL DELETE Statement?

Anytime you want to remove rows from a SQL table use the SQL DELETE statement to remove the information.

How To Use the SQL DELETE Statement

The SQL DELETE command is used as follows.

SQL DELETE Statement Syntax

 
DELETE FROM <table_name>
WHERE <where_conditions>
 

SQL DELETE Statement Example

The following example deletes the row in the product table with product_nbr of '1001'.

Before the execution of the SQL DELETE statement, the table contains this data:

product_nbrproduct_name
1001 SQL Tool Light
1002 SQL Tool Professional
1003 SQL Tool Enterprise

 
DELETE product
WHERE product_nbr = '1003'
 

After the execution of the SQL DELETE statement, the table contains this data:

product_nbrproduct_name
1001 SQL Tool Light
1002 SQL Tool Professional

HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX
Copyright© 1999-2010, First Place Software, Inc.