Yii2.0实现的批量更新及批量插入功能示例
程序员文章站
2023-01-04 17:30:36
本文实例讲述了yii2.0实现的批量更新及批量插入功能。分享给大家供大家参考,具体如下:
批量更新
方法1
/**
* 批量更新循环周期
* @param...
本文实例讲述了yii2.0实现的批量更新及批量插入功能。分享给大家供大家参考,具体如下:
批量更新
方法1
/** * 批量更新循环周期 * @param array $condition * $condition = ['advertise_id' => '','status' => '', 'weekdays'=>[1,2,3]] 查询条件 * $params = ['status' => ''] * @param $params * @return bool */ public function batchupdateadschedule($condition = [], $params) { if (count($condition) == 0 || !is_array($condition) || count($params) == 0) { return false; } $conditions = ' 1 = 1 '; $bind = []; if (array_key_exists('advertise_id', $condition) && !empty($condition['advertise_id'])) { $conditions .= ' and `advertise_id` = :advertiseid'; $bind['advertiseid'] = $condition['advertise_id']; } if (array_key_exists('status', $condition) && !empty($condition['status'])) { $conditions .= ' and `status` = :status'; $bind['status'] = $condition['status']; } $result = advertiseschedule::updateall($params, $conditions, $bind); return $result > 0 ? true : false; }
方法2
/** * 批量更新商品销量 * @param $params * @return bool|int * @throws \yii\db\exception */ public function batchupdatesalesnum($params) { if (count($params) == 0 || !is_array($params)) { return false; } $sql = ''; foreach ($params as $key => $value) { $sql .= 'update `morefun`.`mbb_goods` set `sale_num` = `sale_num` -' . $value['amount'] . ' where `id` =' . $value['goods_id'] . ';'; } $result = yii::$app->db->createcommand($sql)->execute(); return $result == 1 ? true : false; }
批量插入
/** * 批量插入 * @param $params * @return int * @throws \yii\db\exception */ public function batchaddshopclassconn($params) { $connection = yii::$app->db; $querybuilder = $connection->querybuilder; /*$sql = $querybuilder->batchinsert('user', ['name', 'age'], [ ['tom', 30], ['jane', 20], ['linda', 25], ]);*/ $sql = $querybuilder->batchinsert(shopclassconn::tablename(), ['shop_id', 'class_id'], $params); return $connection->createcommand($sql)->execute(); }
更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于yii框架的php程序设计有所帮助。
上一篇: 获取MSSQL数据字典的SQL语句
下一篇: 鱼腥草凉拌能吃吗,大揭秘