Friday, March 10, 2017

MySQL UPDATE & DELETE Query with Example

What is the DELETE Keyword?

The SQL DELETE command is used to delete rows that are no longer required from the database tables. It deletes the whole row from the table. Delete command comes in handy to delete temporary or obsolete data from your database.The DELETE command can delete more than one row from a table in a single query. This proves to be advantages when removing large numbers of rows from a database table. 
Once a row has been deleted, it cannot be recovered. It is therefore strongly recommended to make database backups before deleting any data from the database. This can allow you to restore the database and view the data later on should it be required.

Delete command syntax

The basic syntax of the delete command is as shown below.
DELETE FROM `table_name` [WHERE condition];
HERE
  • DELETE FROM `table_name` tells MySQL server to remove rows from the table ..
  • [WHERE condition] is optional and is used to put a filter that restricts the number of rows affected by the DELETE query.

If the WHERE clause is not used in the DELETE query, then all the rows in a given table will be deleted. Before we go into more details discussion the DELETE command, let's insert some sample data into the movies table to work with.

INSERT INTO  `movies` (`title`, `director`, `year_released`, `category_id`) VALUES ('The Great Dictator', 'Chalie Chaplie', 1920, 7);
INSERT INTO `movies` (`title`, `director`, `category_id`) VALUES ('sample movie', 'Anonymous', 8);
INSERT INTO  movies (`title`, `director`, `year_released`, `category_id`) VALUES ('movie 3', 'John Brown', 1920, 8);
Executing the above script adds three (3) movies into the movies table. Before we go any further into our lesson, let's get all the movies in our table. The script shown below does that.
SELECT * FROM `movies`;
Executing the above script gives us the following results.
movie_iditledirectoryear_releasedcategory_id
1Pirates of the Caribean 4Rob Marshall20111
2Forgetting Sarah MarshalNicholas Stoller20082
3X-MenNULL2008NULL
4Code Name BlackEdgar Jimz2010NULL
5Daddy's Little GirlsNULL20078
6Angels and DemonsNULL20076
7Davinci CodeNULL20076
9Honey moonersJohn Schultz20058
1667% GuiltyNULL2012NULL
18The Great DictatorChalie Chaplie19207
19sample movieAnonymousNULL8
20movie 3John Brown19208
 Let's suppose that the Myflix video library no longer wishes to be renting out "The Great Dictator" to its members and they want it removed from the database. Its movie id is 18, we can use the script shown below to delete its row from the movies table.
DELETE FROM `movies` WHERE `movie_id` = 18;
Executing the above script in MySQL WorkBench against the Myflix deletes the movie with id 18 from the database table.
Let's see the current status of movies table.
SELECT * FROM `movies`;

movie_idtitledirectoryear_releasedcategory_id
1Pirates of the Caribean 4Rob Marshall20111
2Forgetting Sarah MarshalNicholas Stoller20082
3X-MenNULL2008NULL
4Code Name BlackEdgar Jimz2010NULL
5Daddy's Little GirlsNULL20078
6Angels and DemonsNULL20076
7Davinci CodeNULL20076
9Honey moonersJohn Schultz20058
1667% GuiltyNULL2012NULL
19sample movieAnonymousNULL8
20movie 3John Brown19208
NOTE:
  • the movie with id 18 has not been return in the query result set.
  • you cannot delete a single column for a table. You can delete an entire row.

Let's say we  have a list of movies we want to delete . We can use the WHERE clause along with IN.
DELETE FROM `movies` WHERE `movie_id`  IN (20,21);
Executing the above script deletes movies with IDs 20 and 21 from our movies table.

WHAT IS THE UPDATE COMMAND?

The Update command is used to modify rows in a table. The update command can be used to update a single field or multiple fields at the same time. It can also be used to update a table with values from another table .

Update command syntax

The basic syntax of the SQL Update command is as shown below.

UPDATE `table_name` SET `column_name` = `new_value' [WHERE condition];
HERE
  • UPDATE `table_name` is the command that tells MySQL to update the data in a table .
  • SET `column_name` = `new_value' are the names and values of the fields to be affected by the update query. Note, when setting the update values, strings data types must be in single quotes. Numeric values do not need to be in quotation marks. Date data type must be in single quotes and in the format 'YYYY-MM-DD'.
  • [WHERE condition]  is optional and can be used to put a filter that restricts the number of rows affected by the DELETE query.
Let's now look at a practical example that updates data in the members table. Let's suppose that our member's membership numbers 1 and 2 have the following updates to be made to their data records.
Membership numberUpdates required
1Changed contact number from 999 to 0759 253 532
2Change the name to Janet Smith Jones and physical address should be updated to Melrose 123
We will start with making updates for membership number  1 before we make any updates to our data, let's retrieve the record for membership number 1. The script shown below helps us to do that.
SELECT * FROM `members` WHERE `membership_number` = 1;
 
Executing the above script gives us the following results.
membership_numberfull_namesgenderdate_of_birthphysical_addresspostal_addresscontct_numberemail
1Janet JonesFemale21-07-1980First Street Plot No 4Private Bag999janetjones@yagoo.cm
Let's now update the contact number using the script shown below.
UPDATE `members` SET `contact_number` = '0759 253 542' WHERE `membership_number` = 1;
 
Executing the above script updates the contact number from 999 to 0759 253 532 for membership number 1. Let's now look at the record for membership number 1 after executing the update script.
 
SELECT * FROM `members` WHERE `membership_number` = 1;
Executing the above script gives us the following results.
membership_numberfull_namesgenderdate_of_birthphysical_addresspostal_addresscontct_numberemail
1Janet JonesFemale21-07-1980First Street Plot No 4Private Bag0759 253 542janetjones@yagoo.cm
Let's now look at the updates required for membership number 2.
membership_numberfull_namesgenderdate_of_birthphysical_addresspostal_addresscontct_numberemail
2Smith JonesFemale23-06-1980Park StreetNULLNULLjj@fstreet.com
The following script helps us to do that.
 
UPDATE `members` SET `full_names` = 'Janet Smith Jones', `physical_address` = 'Melrose 123' WHERE `membership_number` = 2;
Executing the above script in updates the full names for membership number 2 to Janet Smith Jones and the physical address to Melrose 123.
membership_numberfull_namesgenderdate_of_birthphysical_addresspostal_addresscontct_numberemail
2Janet Smith JonesFemale23-06-1980Melrose 123NULLNULLjj@fstreet.com

Summary

  • The delete command is used to remove data that is no longer required from a table.
  • The "WHERE clause" is used to limit the number of rows affected by the DELETE query.
  • Once data has been deleted, it cannot be recovered, it is therefore strongly recommend make backups before deleting data.
  • The update command is used to modify existing data.
  • The "WHERE clause" is used to limit the number of rows affected by the UPDATE query.

0 comments:

Post a Comment