Learn to Code SQL Example – SQL | UPDATE Statement

(SQL Example for Citizen Data Scientist & Business Analyst)

 

SQL | UPDATE Statement

The UPDATE statement in SQL is used to update the data of an existing table in database. We can update single columns as well as multiple columns using UPDATE statement as per our requirement.

Basic Syntax

UPDATE table_name SET column1 = value1, column2 = value2,... 
WHERE condition;

table_name: name of the table
column1: name of first , second, third column....
value1: new value for first, second, third column....
condition: condition to select the rows for which the 
values of columns needs to be updated.

NOTE: In the above query the SET statement is used to set new values to the particular column and the WHERE clause is used to select the rows for which the columns are needed to be updated. If we have not used the WHERE clause then the columns in all the rows will be updated. So the WHERE clause is used to choose the particular rows.
table1

Example Queries

    • Updating single column: Update the column NAME and set the value to ‘PRATIK’ in all the rows where Age is 20.
      UPDATE Student SET NAME = 'PRATIK' WHERE Age = 20;
      

      Output:
      This query will update two rows(third row and fifth row) and the table Student will now look like,

      ROLL_NO NAME ADDRESS PHONE Age
      1 Ram Delhi XXXXXXXXXX 18
      2 RAMESH GURGAON XXXXXXXXXX 18
      3 PRATIK ROHTAK XXXXXXXXXX 20
      4 SURESH Delhi XXXXXXXXXX 18
      3 PRATIK ROHTAK XXXXXXXXXX 20
      2 RAMESH GURGAON XXXXXXXXXX 18

 

    • Updating multiple columns: Update the columns NAME to ‘PRATIK’ and ADDRESS to ‘SIKKIM’ where ROLL_NO is 1.
      UPDATE Student SET NAME = 'PRATIK', ADDRESS = 'SIKKIM' WHERE ROLL_NO = 1;
      

      Output:
      The above query will update two columns in the first row and the table Student will now look like,

      ROLL_NO NAME ADDRESS PHONE Age
      1 PRATIK SIKKIM XXXXXXXXXX 18
      2 RAMESH GURGAON XXXXXXXXXX 18
      3 PRATIK ROHTAK XXXXXXXXXX 20
      4 SURESH Delhi XXXXXXXXXX 18
      3 PRATIK ROHTAK XXXXXXXXXX 20
      2 RAMESH GURGAON XXXXXXXXXX 18

      Note: For updating multiple columns we have used comma(,) to separate the names and values of two columns.

 

  • Omitting WHERE clause: If we omit the WHERE clause from the update query then all of the rows will get updated.
    UPDATE Student SET NAME = 'PRATIK';
    

    Output:
    The table Student will now look like,

    ROLL_NO NAME ADDRESS PHONE Age
    1 PRATIK Delhi XXXXXXXXXX 18
    2 PRATIK GURGAON XXXXXXXXXX 18
    3 PRATIK ROHTAK XXXXXXXXXX 20
    4 PRATIK Delhi XXXXXXXXXX 18
    3 PRATIK ROHTAK XXXXXXXXXX 20
    2 PRATIK GURGAON XXXXXXXXXX 18

 

Beginners Guide to SQL – SQL UPDATE Statement

 

Learn to Code SQL Example – SQL | UPDATE Statement

Personal Career & Learning Guide for Data Analyst, Data Engineer and Data Scientist

Applied Machine Learning & Data Science Projects and Coding Recipes for Beginners

A list of FREE programming examples together with eTutorials & eBooks @ SETScholars

95% Discount on “Projects & Recipes, tutorials, ebooks”

Projects and Coding Recipes, eTutorials and eBooks: The best All-in-One resources for Data Analyst, Data Scientist, Machine Learning Engineer and Software Developer

Topics included: Classification, Clustering, Regression, Forecasting, Algorithms, Data Structures, Data Analytics & Data Science, Deep Learning, Machine Learning, Programming Languages and Software Tools & Packages.
(Discount is valid for limited time only)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners

Please do not waste your valuable time by watching videos, rather use end-to-end (Python and R) recipes from Professional Data Scientists to practice coding, and land the most demandable jobs in the fields of Predictive analytics & AI (Machine Learning and Data Science).

The objective is to guide the developers & analysts to “Learn how to Code” for Applied AI using end-to-end coding solutions, and unlock the world of opportunities!