企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
##### 删除数据 ~~~ $Sql -> del($table,$where,$other); ~~~ ##### 参数说明 > $table [必选] 表名 > $field [可选] 判断语句数组 > $other [可选] 辅助参数 > 1. echo 输出类型(0:执行状态布尔值,1:打印语句) > 2. forced 强制数据更新(0:不判断,1:判断) > 3. all 清除表的所有数据(0:否,1:是) ##### 回调信息 > 若为强制更新(forced)则直接返回布尔值 > succeed 执行状态[0:失败,1:成功] > msg 提示信息 ##### 实例 - 直接删除 ~~~ $where = []; $where[] = '字段值="'.字段值.'"'; $back = $Sql->del($table,$where); ~~~ ##### 实例 - 表清空 ~~~ $back = $Sql->del($table,[],['all'=>1]); ~~~ ##### 实例 - 只输出语句 ~~~ $where = []; $where[] = '字段值="'.字段值.'"'; $back = $Sql->del($table,$where,['echo'=>1]); ~~~ ##### 实例 - 事务只输出语句 ~~~ $where = []; $where[] = '字段值="'.字段值.'"'; $step[] = $Sql->del($table,$where,['echo'=>1]); ~~~ ##### 实例 - 事务输出语句并强制数据变更 ~~~ $where = []; $where[] = '字段值="'.字段值.'"'; $step[] = [$Sql->del($table,$where,['echo'=>1]),'forced'=>1]; ~~~