1、插入数据:
Insert into 表名 (字段1,字段2,字段3) values ('值1','值2','值3') where + 条件
2、更新数据
Update 表名 Set 字段1='值' where +条件
3、删除数据
Delete [From] 表名 where +条件
4、查询数据
select * from 表名 where + 条件 order by ASC/DESC
本文共 240 字,大约阅读时间需要 1 分钟。
1、插入数据:
Insert into 表名 (字段1,字段2,字段3) values ('值1','值2','值3') where + 条件
2、更新数据
Update 表名 Set 字段1='值' where +条件
3、删除数据
Delete [From] 表名 where +条件
4、查询数据
select * from 表名 where + 条件 order by ASC/DESC
转载于:https://blog.51cto.com/92share/1931508