更改某个字段中个别数据update、插入数据
tablename :表名,colname:字段名
1.更改某个字段中个别数据
update tablename set colname='xx' where id=1;
也可直接删除字段alter drop,数据也就随之删除,删除后也可以再alter add 添加,详细见https://blog.youkuaiyun.com/xingandxin/article/details/107982553
2.直接插入单个数据
insert into tablename values (1,'张三');
#1对应字段id的值,张三对应字段name的值。一定要注意顺序