数据操作语言包括四种:增(insert)删(delete)查(select)改(update)
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';
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有