UPDATE介紹

何謂UPDATE
  • 在表格內修改資料,可使用WHERE子句或子查詢指定要更改的資料,如果不指定會更新所有表格資料
格式
UPDATE table_clause
SET update_row
[WHERE where_clause]
使用方式
  • SQL語法示範
100的emp_id,薪水修改為1000
update emp set salary=1000
where emp_id=100;
  • SQL語法示範(子查詢)
100的emp_id,薪水修改為1000
update emp set salary=1000
where emp_id=(select emp_id from emp where emp_id=100);