- UPDATE table SET column = value [, column = value, ...] [WHERE condition];
- Update more than one row at a time (if required).
Specific row or rows are modified if you specify the WHERE clause :
- UPDATE emp SET deptno = 40 WHERE empno = 7654;
- UPDATE copy_emp SET deptno = 110;
- Update employee 7654’s job and sal to match that of employee 7698
No comments:
Post a Comment