真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

YII2數(shù)據(jù)庫如何查詢-創(chuàng)新互聯(lián)

小編給大家分享一下YII2數(shù)據(jù)庫如何查詢,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),嘉興企業(yè)網(wǎng)站建設(shè),嘉興品牌網(wǎng)站建設(shè),網(wǎng)站定制,嘉興網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,嘉興網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。

數(shù)據(jù)庫配置。

/config/db.php 進(jìn)行數(shù)據(jù)庫配置

實踐過程中有個test庫-》test表-》兩條記錄如下

mysql> select * from test;
+----+--------+
| id | name |
+----+--------+
| 1 | zhuai |
| 2 | heng | 
+----+--------+
18 rows in set (0.00 sec)

sql 查詢方式

yii2 提供了原始的數(shù)據(jù)庫查詢方式findBySql;同時, 通過占位符的方式,自動進(jìn)行了基本的sql注入防御 。上碼

// 最基本的查詢方式
$sql = "select * from test where 1";
$res = Test::findBySql($sql)->all();
var_dump(count($res)); // res->2 
// findbysql 防止sql注入方式
$id = '1 or 1=1';
$sql = "select * from test where id = " . $id;
$res = Test::findBySql($sql)->all();
var_dump(count($res)); // res-> 2
$sql = "select * from test where id = :id";
// 定位符會自動防止sql 注入
$res = Test::findBySql($sql,array(":id"=>$id))->all();
var_dump(count($res)); // res->1

activeRecord查詢方式

每個框架除了原有的sql方式,都會提供相應(yīng)的封裝的查詢方式,yii2亦然。

創(chuàng)建model

yii的model基本方式如下,代碼如下不贅述。

 [0, 100]],
];
}
}

使用的時候需要引入model

use app\models\Test;
增加操作
// add 操作
$test = new Test();
$test->name = 'test';
// 合法性校驗
$test->validate();
if($test->hasErrors()){
echo "數(shù)據(jù)不合法";
die;
}
$test->save();

查詢操作

查詢操作先上官方文檔

activeRecord doc

where doc

需要強調(diào)的是:yii查詢提供了特別多豐富的庫,例如代碼中的批量查詢處理等等,細(xì)節(jié)可以看文檔。

// select
// id = 1
$res = Test::find()->where(['id' => 1])->all();
var_dump(count($res)); //1
// id > 0
$res = Test::find()->where(['>','id',0])->all();
var_dump(count($res)); //2
// id > =1 id <=2
$res = Test::find()->where(['between','id',1,2])->all();
var_dump(count($res)); //2
// name字段like
$res = Test::find()->where(['like', 'name', 'cuihuan'])->all();
var_dump(count($res)); //2
// 查詢的使用 obj->array
$res = Test::find()->where(['between','id',1,2])->asArray()->all();
var_dump($res[0]['id']); //2
// 批量查詢,對于大內(nèi)存操作的批量查詢
foreach (Test::find()->batch(1) as $test) {
var_dump(count($test));
}

刪除操作

// delete 
// 選出來刪除
$res = Test::find()->where(['id'=>1])->all();
$res[0]->delete();
// 直接刪除
var_dump(Test::deleteAll('id>:id', array(':id' => 2)));

修改操作

除了代碼中方式,yii2直接提供update操作。

// 活動記錄修改
$res = Test::find()->where(['id'=>4])->one();
$res->name = "update";
$res->save();

關(guān)聯(lián)查詢操作

關(guān)聯(lián)查詢示例中兩個表:

一個學(xué)生表(student):id ,name;

一個分?jǐn)?shù)表(score):id,stu_id,score

// 相應(yīng)學(xué)生的所有score
$stu = Student::find()->where(['name'=>'xiaozhuai'])->one();
var_dump($stu->id);
// 基本獲取
$scores_1 = $stu->hasMany('app\model\Score',['stu_id'=>$stu->id])->asArray()->all();
$scores_2 = $stu->hasMany(Score::className(),['stu_id'=>'id'])->asArray()->all();
var_dump($scores_1);
var_dump($scores_2);

兩種關(guān)聯(lián)查詢方式;但是,在controller進(jìn)行相關(guān)操作,代碼顯的過于混亂,在model中封裝調(diào)用

首先在student model中封裝相關(guān)關(guān)聯(lián)調(diào)用函數(shù)

hasMany(Score::className(), ['stu_id' => 'id'])->asArray()->all();
return $scores;
}
}

之后直接調(diào)用,兩種調(diào)用方式

// 函數(shù)封裝之后調(diào)用
$scores = $stu->getScores();
var_dump($scores);
// 利用__get 的自動調(diào)用的方式
$scores = $stu->scores;
var_dump($scores);

以上是“YII2數(shù)據(jù)庫如何查詢”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


分享題目:YII2數(shù)據(jù)庫如何查詢-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://weahome.cn/article/dchdci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部