数据库的增删改查语句

1.创建表

create table 表名(参数名 数据类型....)
2.增加语句
insert into 表名 values(参数值);
3.删除语句
delete from 表名 where 条件
4.更新语句
update 表名 set 字段名=新值 where 条件
5.查找语句
select * from 表名 where 条件
原文地址:https://www.cnblogs.com/creazybeauty/p/5978326.html