立即学习:https://edu.youkuaiyun.com/course/play/27328/362520?utm_source=blogtoedu
insert into contacts(name,sex,phone) values('jiacy', 1, '18600136137');
//在表中添加数据字段
update contacts set sex=2 where id = 4;
//修改表中对应位置的数据字段
delete from contacts where id=1;
//删除表中对应位置的数据字段