The SQL DELETE Query is used to delete the existing records from a table.
You can use WHERE clause with DELETE query to delete selected rows, otherwise all the records would be deleted.
Syntax :-
The basic syntax of DELETE query with WHERE clause is as follows :-
DELETE FROM table_name
WHERE [condition];
You can combine N number of conditions using AND or OR operators.
Example :-
Consider the CUSTOMERS table having the following records :-
You can use WHERE clause with DELETE query to delete selected rows, otherwise all the records would be deleted.
Syntax :-
The basic syntax of DELETE query with WHERE clause is as follows :-
DELETE FROM table_name
WHERE [condition];
You can combine N number of conditions using AND or OR operators.
Example :-
Consider the CUSTOMERS table having the following records :-
Following is an example, which would DELETE a customer, whose ID is 6 :-
DELETE FROM CUSTOMERS
WHERE ID = 6;
Now, CUSTOMERS table would have the following records :-
If you want to DELETE all the records from CUSTOMERS table, you do not need to use WHERE clause and DELETE query would be as follows :-
DELETE FROM CUSTOMERS;
Now, CUSTOMERS table would not have any record


No comments:
Post a Comment