一。 删除
1)物理删除
delete from 表名 where 条件 ---》 delete from class where id = 1;
2) 逻辑删除
用一个字段来表示 这条信息是否已经不能再使用了 ;
(1)给students表添加一个 is_delete 字段 bit 类型 默认为0
alter table students add is_delete bit default 0;
# is_delete = 1 逻辑删除
update students set is_delete=1 where id=6;
本文链接:https://my.lmcjl.com/post/8872.html
展开阅读全文
4 评论