插入将查询结果插入到表中更新删除 插入insert into <表名> (字段1,字段2,....) values (值1,值2,...) ,(值1,值2,...) 将查询结果插入到表中insert into <表名> (列1,列2,...) select * from another_table; 更新 update <表名> set 字段1 = 值1,字段2 = 值2 where <条件>; 删除delete from <表名> where <条件>;