Blogger Information
Blog 44
fans 0
comment 0
visits 35564
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
使用软删除技术,来实现对员工信息中的记录删除操作-2019年2月27日
的博客
Original
622 people have browsed it

使用软删除技术,来实现对员工信息中的记录删除操作

所谓的软删除技术意思就是在数据库中添加一个标记字段用来模拟数据是否可以使用的状态

使用场景如:电商网站的下架产品,待审核的订单...

staff_list.php   在输入数据时添加过滤标记字段的sql语句

$stmt = $pdo->prepare('SELECT * FROM `staff` WHERE `is_show`=1 LIMIT 5');

staff_manage.php 在删除数据时修改标记字段即可实现软删除

$stmt = $pdo->prepare("UPDATE `staff` SET `id`=:id WHERE `id`={$id}");


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post