SQL命令:查找表中的数据,删除表中的数据

根据条件查找表中的数据,删除表中的数据

  • 查找tab01表中,grade在80-100之间的数据
select * from tab01 where grade between 80 and 100;
  • 查找tab01表中,id为3,6,9的数据
select * from tab01 where id in(3,6,9);
  • 查看数据更新安全开关状态
show variables like 'sql_safe_updates' ;
set sql_safe_updates=0;  #关闭状态 
set sql_safe_updates=1; #打开状态 
  • 删除tab01表中,id大于10的数据
delete from tab01 where id >10;
  • 删除tab01表中。grade小于60分的数据
delete from tab01 where grade<60;
上一篇:5、运算、统计分析


下一篇:数据库-对表插入、修改、删除数据-SQL