over 9 years ago
UPDATE statement is used to update existing table data in database table with the help of WHERE clause.WHERE clause tells which record is to be updated.
Lets see an example from the below table "employees" :-
employee_id | name | code | designation | salary |
---|---|---|---|---|
101 | ABC | E-101 | Engineer | 12000 |
102 | DEF | E-102 | Doctor | 8000 |
103 | GHI | E-103 | Software Developer | 8000 |
104 | JKL | E-104 | CEO | 12000 |
105 | MNO | E-105 | Software Developer | 100000 |
UPDATE SQL Statement Syntax :-
UPDATE statement example :-
Now Run this Query, we will see the output below :-
employee_id | name | code | designation | salary |
---|---|---|---|---|
101 | ABC | E-101 | Engineer | 12000 |
102 | DEF | E-102 | Doctor | 40000 |
103 | GHI | E-103 | Software Developer | 8000 |
104 | JKL | E-104 | CEO | 12000 |
105 | MNO | E-105 | Software Developer | 100000 |
We can see here, One existing record with Employee Id 102 is updated. salary column value for this record is updated to 40000 .
0 Comment(s)