更新表中的数据
update tab01 set sex=0 where sex is null;
update tab01 set grade=65 where grade<60;
查询表中有多少行数据
select count(*) from tab01;
select count(distinct sex) from tab01;
SQL命令:更新表中的数据,查询表中有多少行数据
原文:https://www.cnblogs.com/testerg/p/14731984.html