insert: insert into 表名 values(值1,值2,......);
delete from 表名 where 条件;
update:Update 表名 set 字段=值 where 条件;
select * from 表名 where 条件;
存储过程:参考https://www.cnblogs.com/joeyJss/p/11458653.html#_label0_0