添加多个数据
insert into 表名(字段名,字段名) values(‘数据‘,‘数据‘),(‘数据‘,‘数据‘)
delete from 表名 where id=2
不带条件删除所有数据,id不重置
truncate 表名 删除所有数据,id重置
更新数据
update 表名 set 字段名=‘新数据‘ where id=2
不带条件更新所有数据
查询
select 字段,字段 from 表名 where
select * from 表名 查询所有
查询后使用别名显示
select 字段 as ‘别名‘ , 字段 as ‘别名‘ from 表名