除了数据查询语言外,还有数据操纵语言。

insert

  1. insert into employees
  2. values("xxx", 1, 2);

delete

作用与select的唯一差别是删除符合条件的元组。

update

update通常与set子句同时使用,作用是修改某元组中的属性值。

  1. update Person
  2. set Address = "xxx", City = "xxxx"
  3. where xxx