摘要:
根据条件查找表中的数据,删除表中的数据 查找tab01表中,grade在80-100之间的数据 select * from tab01 where grade between 80 and 100; 查找tab01表中,id为3,6,9的数据 select * from tab01 where id 阅读全文
摘要:
更新表中的数据 更新tab01表,把sex为空的,设置为0 update tab01 set sex=0 where sex is null; 更新tab01表,把grade小于60分的同学,设置为65分 update tab01 set grade=65 where grade<60; 查询表中有 阅读全文