Yii2数据库操作常用方法小结


Posted in PHP onMay 04, 2017

本文实例讲述了Yii2数据库操作常用方法。分享给大家供大家参考,具体如下:

查询:

// find the customers whose primary key value is 10
$customers = Customer::findAll(10);
$customer = Customer::findOne(10);
// the above code is equivalent to:
$customers = Customer::find()->where(['id' => 10])->all();
// find the customers whose primary key value is 10, 11 or 12.
$customers = Customer::findAll([10, 11, 12]);
$customers = Customer::find()->where(['IN','id',[10,11,12]])->all();
// the above code is equivalent to:
$customers = Customer::find()->where(['id' => [10, 11, 12]])->all();
// find customers whose age is 30 and whose status is 1
$customers = Customer::findAll(['age' => 30, 'status' => 1]);
// the above code is equivalent to:
$customers = Customer::find()->where(['age' => 30, 'status' => 1])->all();
// use params binding
$customers = Customer::find()->where('age=:age AND status=:status')->addParams([':age'=>30,':status'=>1])->all();
// use index
$customers = Customer::find()->indexBy('id')->where(['age' => 30, 'status' => 1])->all();
// get customers count
$count = Customer::find()->where(['age' => 30, 'status' => 1])->count();
// add addition condition
$customers = Customer::find()->where(['age' => 30, 'status' => 1])->andWhere('score > 100')->orderBy('id DESC')->offset(5)->limit(10)->all();
// find by sql
$customers = Customer::findBySql('SELECT * FROM customer WHERE age=30 AND status=1 AND score>100 ORDER BY id DESC LIMIT 5,10')->all();

修改:

// update status for customer-10
$customer = Customer::findOne(10);
$customer->status = 1;
$customer->update();
// the above code is equivalent to:
Customer::updateAll(['status' => 1], 'id = :id',[':id'=>10]);

删除:

// delete customer-10
Customer::findOne(10)->delete();
// the above code is equivalent to:
Customer::deleteAll(['status' => 1], 'id = :id',[':id'=>10]);

----------------使用子查询----------------------

$subQuery = (new Query())->select('COUNT(*)')->from('customer');
// SELECT `id`, (SELECT COUNT(*) FROM `customer`) AS `count` FROM `customer`
$query = (new Query())->select(['id', 'count' => $subQuery])->from('customer');

----------------手写SQL-----------------------

// select
$customers = Yii::$app->db->createCommand('SELECT * FROM customer')->queryAll();
// update
Yii::$app->db->createCommand()->update('customer',['status'=>1],'id=10')->execute();
// delete
Yii::$app->db->createCommand()->delete('customer','id=10')->execute();
//transaction
// outer
$transaction1 = $connection->beginTransaction();
try {
  $connection->createCommand($sql1)->execute();
  // internal
  $transaction2 = $connection->beginTransaction();
  try {
    $connection->createCommand($sql2)->execute();
    $transaction2->commit();
  } catch (Exception $e) {
    $transaction2->rollBack();
  }
  $transaction1->commit();
} catch (Exception $e) {
  $transaction1->rollBack();
}

---------------主从配置----------------------

[
  'class' => 'yii\db\Connection',
  // master
  'dsn' => 'dsn for master server',
  'username' => 'master',
  'password' => '',
  // slaves
  'slaveConfig' => [
    'username' => 'slave',
    'password' => '',
    'attributes' => [
      // use a smaller connection timeout
      PDO::ATTR_TIMEOUT => 10,
    ],
  ],
  'slaves' => [
    ['dsn' => 'dsn for slave server 1'],
    ['dsn' => 'dsn for slave server 2'],
    ['dsn' => 'dsn for slave server 3'],
    ['dsn' => 'dsn for slave server 4'],
  ],
]

希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。

PHP 相关文章推荐
PHP中实现汉字转区位码应用源码实例解析
Jun 14 PHP
PHP随机数生成代码与使用实例分析
Apr 08 PHP
php mysql 判断update之后是否更新了的方法
Jan 10 PHP
PHP判断搜索引擎蜘蛛并自动记忆到文件的代码
Feb 04 PHP
PHP 修复未正常关闭的HTML标签实现代码(支持嵌套和就近闭合)
Jun 07 PHP
PHP多例模式介绍
Jun 24 PHP
PHP回溯法解决0-1背包问题实例分析
Mar 23 PHP
FastCGI 进程意外退出造成500错误
Jul 26 PHP
PHP编程获取各个时间段具体时间的方法
May 26 PHP
Django 中 cookie的使用
Aug 17 PHP
THINKPHP3.2使用soap连接webservice的解决方法
Dec 13 PHP
php常用字符串查找函数strstr()与strpos()实例分析
Jun 21 PHP
Yii2中添加全局函数的方法分析
May 04 #PHP
Yii2表单事件之Ajax提交实现方法
May 04 #PHP
PHP经典实用正则表达式小结
May 04 #PHP
PHP实现的简单异常处理类示例
May 04 #PHP
PHP基于新浪IP库获取IP详细地址的方法
May 04 #PHP
PHP 无限级分类
May 04 #PHP
PHP实现中国公民身份证号码有效性验证示例代码
May 03 #PHP
You might like
用PHP的超级变量$_POST获取HTML表单(HTML Form) 数据
2011/05/07 PHP
采用memcache在web集群中实现session的同步会话
2014/07/05 PHP
分享php分页的功能模块
2015/06/16 PHP
PHP7新特性之抽象语法树(AST)带来的变化详解
2018/07/17 PHP
PHP实现微信提现功能(微信商城)
2019/11/21 PHP
图片按比例缩放函数
2006/06/26 Javascript
js 屏蔽鼠标右键脚本附破解方法
2009/12/03 Javascript
jtable列中自定义button示例代码
2013/11/21 Javascript
js操纵dom生成下拉列表框的方法
2014/02/24 Javascript
打造个性化的功能强大的Jquery虚拟键盘(VirtualKeyboard)
2014/10/11 Javascript
js省市联动效果完整实例代码
2015/12/09 Javascript
深入探究AngularJS框架中Scope对象的超级教程
2016/01/04 Javascript
JavaScript设计模式初探
2016/01/07 Javascript
基于js中的原型(全面讲解)
2017/09/19 Javascript
Parcel.js + Vue 2.x 极速零配置打包体验教程
2017/12/24 Javascript
Vue路由切换时的左滑和右滑效果示例
2018/05/29 Javascript
Vue-cli 移动端布局和动画使用详解
2020/08/10 Javascript
[02:42]DOTA2城市挑战赛收官在即 四强之争风起云涌
2018/06/05 DOTA
python中模块的__all__属性详解
2017/10/26 Python
Python实现读取txt文件并转换为excel的方法示例
2018/05/17 Python
Python使用random模块生成随机数操作实例详解
2019/09/17 Python
Python实现使用dir获取类的方法列表
2019/12/24 Python
Django Path转换器自定义及正则代码实例
2020/05/29 Python
Python轻量级web框架bottle使用方法解析
2020/06/13 Python
标准毕业生自荐信范文
2013/11/04 职场文书
《胡杨》教学反思
2014/02/16 职场文书
送餐员岗位职责范本
2014/02/21 职场文书
《卖木雕的少年》教学反思
2014/04/11 职场文书
小学语文教学经验交流材料
2014/06/02 职场文书
党支部三严三实对照检查材料思想汇报
2014/09/29 职场文书
小学教师节活动总结
2015/03/20 职场文书
2015年国庆节广播稿
2015/08/19 职场文书
Java 超详细讲解十大排序算法面试无忧
2022/04/08 Java/Android
Windows Server 2019 域控制器安装图文教程
2022/04/28 Servers
图神经网络GNN算法
2022/05/11 Python
JS前端监控采集用户行为的N种姿势
2022/07/23 Javascript