insertdeleteupdate除了数据查询语言外,还有数据操纵语言。 insertinsert into employeesvalues("xxx", 1, 2); delete作用与select的唯一差别是删除符合条件的元组。 updateupdate通常与set子句同时使用,作用是修改某元组中的属性值。 update Person set Address = "xxx", City = "xxxx"where xxx