1、添加数据
命令:insert into values("里面放的数据是要添加的东西")
2、查询表中的数据
1)、查询所有行
命令: select from < 表名 > where < 表达式 >
2)、查询前几行数据
3、删除表中数据
命令:delete from 表名 where 表达式
例如:删除表stu中学号为001 的记录
mysql> delete from MyClass where id='001';
4、修改表中数据
命令:update 表名 set where 条件
mysql> update stu set age=19 where id='001';
mysql很简单,mysql怎么备份的,mysql 记录所有sql语句,mysql怎么导出表字段,mysql搭建流程,mysql 创建函数 if