欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Laravel5.1 框架數(shù)據(jù)庫(kù)查詢構(gòu)建器用法實(shí)例詳解

 更新時(shí)間:2020年01月08日 08:45:08   作者:Sky_sunkang  
這篇文章主要介紹了Laravel5.1 框架數(shù)據(jù)庫(kù)查詢構(gòu)建器用法,結(jié)合實(shí)例形式詳細(xì)分析了laravel5.1框架查詢構(gòu)造器相關(guān)原理、使用技巧與操作注意事項(xiàng),需要的朋友可以參考下

本文實(shí)例講述了Laravel5.1 框架數(shù)據(jù)庫(kù)查詢構(gòu)建器用法。分享給大家供大家參考,具體如下:

今兒個(gè)咱說(shuō)說(shuō)查詢構(gòu)建器。它比運(yùn)行原生SQL要簡(jiǎn)單些,它的操作面兒也是比較廣泛的。

1 查詢結(jié)果

先來(lái)看看它的語(yǔ)法:

  public function getSelect()
  {
    $result = DB::table('articles')->get();
    dd($result);
  }

查詢構(gòu)建器就是通過(guò)table方法返回的,使用get()可以返回一個(gè)結(jié)果集(array類(lèi)型) 這里是返回所有的數(shù)據(jù),當(dāng)然你也可以鏈接很多約束。

1.1 獲取一列/一行數(shù)據(jù)

  public function getSelect()
  {
    $result = DB::table('articles')->where('title', 'learn database')->get();  // 獲取整列數(shù)據(jù)
    $articles = DB::table('articles')->where('title', 'learn database')->first(); // 獲取一行數(shù)據(jù)
    dd($result, $articles);
  }

我們可以通過(guò)where來(lái)增添?xiàng)l件。

1.2 獲取數(shù)據(jù)列值列表

如果你想要取到某列的值的話 可以使用lists方法:

  public function getSelect()
  {
    $result = DB::table('articles')->where('id', '<', 2)->lists('title');
    $titles = DB::table('articles')->lists('title');
    dd($result, $titles);
  }

1.3 獲取組塊兒結(jié)果集

在我們數(shù)據(jù)表中數(shù)據(jù)特別特別多時(shí) 可以使用組塊結(jié)果集 就是一次獲取一小塊數(shù)據(jù)進(jìn)行處理

  public function getSelect()
  {
    DB::table('articles')->chunk(2, function ($articles){
      foreach ($articles as $article){
        echo $article->title;
        echo "<br />";
      }
    });
  }

如果說(shuō)要終止組塊運(yùn)行的話 返回false就可以了:

  public function getSelect()
  {
    DB::table('articles')->chunk(2, function ($articles){
      return false;
    });
  }

1.4 聚合函數(shù)

構(gòu)建器還提供了很多的實(shí)用方法供我們使用:

  • count方法:返回構(gòu)建器查詢到的數(shù)據(jù)量。
  • max方法:傳入一列 返回這一列中最大的值。
  • min方法:跟max方法類(lèi)似,它返回最小的值。
  • sum方法:返回一列值相加的和。
  • avg方法:計(jì)算平均值。

1.4.1 count

  public function getArticlesInfo()
  {
    $article_count = DB::table('articles')->count();
    dd($article_count);
  }

1.4.2 max

  public function getArticlesInfo()
  {
    $maxCommentCount = DB::table('articles')->max('comment_count');
    dd($maxCommentCount);
  }

1.4.3 sum

  public function getArticlesInfo()
  {
    $commentSum = DB::table('articles')->sum('comment_count');
  }

1.4.4 avg

  public function getArticlesInfo()
  {
    $commentAvg = DB::table('articles')->avg('comment_count');
    dd($commentAvg);
  }

1.5 select查詢

1.5.1 自定義子句

select語(yǔ)句可以獲取指定的列,并且可以自定義鍵:

  public function getArticlesInfo()
  {
    $articles = DB::table('articles')->select('title')->get();
    // 輸出結(jié)果:
//    array:3 [▼
//      0 => {#150 ▼
//          +"title": "laravel database"
//      }
//      1 => {#151 ▼
//          +"title": "learn database"
//       }
//       2 => {#152 ▼
//          +"title": "alex"
//       }
//      ]
    $articles1 = DB::table('articles')->select('title as articles_title')->get();
    // 輸出結(jié)果:
//    array:3 [▼
//       0 => {#153 ▼
//          +"articles_title": "laravel database"
//       }
//       1 => {#154 ▼
//          +"articles_title": "learn database"
//       }
//       2 => {#155 ▼
//          +"articles_title": "alex"
//       }
//      ]
    $articles2 = DB::table('articles')->select('title as articles_title', 'id as articles_id')->get();
//    array:3 [▼
//       0 => {#156 ▼
//          +"articles_title": "laravel database"
//          +"articles_id": 1
//       }
//       1 => {#157 ▼
//          +"articles_title": "learn database"
//          +"articles_id": 2
//       }
//       2 => {#158 ▼
//          +"articles_title": "alex"
//          +"articles_id": 3
//       }
//      ]
  }

1.5.2 distinct方法

關(guān)于distinct方法我還沒(méi)弄明白到底是什么意思 適用于什么場(chǎng)景,也歡迎大神們給出個(gè)答案 謝謝

distinct方法允許你強(qiáng)制查詢返回不重復(fù)的結(jié)果集。

  public function getArticlesInfo()
  {
    $articles = DB::table('articles')->distinct()->get();
  }

1.5.3 addSelect方法

如果你想要添加一個(gè)select 可以這樣做:

  public function getArticlesInfo()
  {
    $query = DB::table('articles')->select('title as articles_title');
    $articles = $query->addSelect('id')->get();
    dd($articles);
  }

2 where語(yǔ)句

where語(yǔ)句是比較常用的,經(jīng)常用他來(lái)進(jìn)行條件篩選。

2.1 where基礎(chǔ)介紹

現(xiàn)在來(lái)詳細(xì)介紹下where方法 它接收三個(gè)參數(shù):

  1. 列名,這個(gè)沒(méi)什么好說(shuō)的。
  2. 數(shù)據(jù)庫(kù)系統(tǒng)支持的操作符,比如說(shuō) ”=“、”<“、”like“這些,如果不傳入第二個(gè)參數(shù) 那么默認(rèn)就是”=“等于。
  3. 要比較的值。
  public function getArticlesInfo()
  {
    $articles1 = DB::table('articles')->where('id','2')->get();     // 等于
    $articles2 = DB::table('articles')->where('id','>','2')->get();   // 大于
    $articles3 = DB::table('articles')->where('id','<>','2')->get();  // 不等于
    $articles4 = DB::table('articles')->where('id','<=','2')->get();  // 小于等于
    $articles5 = DB::table('articles')->where('title','LIKE','%base')->get();  // 類(lèi)似
  }

2.2 orWhere

orWhere和where接收的參數(shù)是一樣的,當(dāng)where邏輯沒(méi)有查找到 or查找到了 返回or的結(jié)果,當(dāng)where查找到了 or也查找到了 返回它們的結(jié)果。

  public function getArticlesInfo()
  {
    $articles = DB::table("articles")->where('id','=','5')->orWhere('title','laravel database')->get();
    dd($articles);
  }

2.3 whereBetween和whereNotBetween

whereBetween是指列值是否在所給定的值之間:

  public function getArticlesInfo()
  {
    $articles = DB::table("articles")->whereBetween('id', [1, 3])->get();
    dd($articles);
  }

↑ 上述代碼是查找id在1~3之間的集合。

whereNotBetween和whereBetween相反:

  public function getArticlesInfo()
  {
    $articles = DB::table("articles")->whereNotBetween('id', [1, 3])->get();
    dd($articles);
  }

↑ 上述代碼是查找id不在1~3之間的集合。

2.4 whereIn和whereNotIn

whereIn是查找列值在給定的一組數(shù)據(jù)中:

  public function getArticlesInfo()
  {
    $articles = DB::table("articles")->whereIn('id', [1, 3, 5, 8])->get();
    dd($articles);
  }

↑ 上述代碼中是查找ID為1,3,5,8的集合,不過(guò)我們數(shù)據(jù)庫(kù)中只有id為1和3的數(shù)據(jù) 那么它只會(huì)返回id為1和3的集合。

whereNotIn和whereIn相反的:

  public function getArticlesInfo()
  {
    $articles = DB::table("articles")->whereNotIn('id', [1, 3, 5, 8])->get();
    dd($articles);
  }

↑ 上述代碼中是查找ID不是1,3,5,8的集合。

2.5 whereNull和whereNotNull

whereNull是查找列值為空的數(shù)據(jù):

  public function getArticlesInfo()
  {
    $articles = DB::table("articles")->whereNull('created_at')->get();
    dd($articles);
  }

↑ 上述代碼中是查找created_at為空的集合。

whereNotNull就不用說(shuō)啦:

  public function getArticlesInfo()
  {
    $articles = DB::table("articles")->whereNotNull('created_at')->get();
    dd($articles);
  }

↑ 上述代碼中是查找created_at不為空的集合。

3 插入數(shù)據(jù)

先看下最簡(jiǎn)單的插入方法:

  public function getInsertArticle()
  {
    // 插入一條數(shù)據(jù):
    DB::table('articles')->insert(
      ['title'=>'get more', 'body'=>'emmmmmm......']
    );
    // 插入多條數(shù)據(jù):
    DB::table('articles')->insert([
      ['title'=>'testTitle1', 'body'=>'testBody1'],
      ['title'=>'testTitle2', 'body'=>'testBody2'],
      // ....
    ]);
  }

當(dāng)你需要拿到插入數(shù)據(jù)的ID的話,可以使用獲取自增ID的方法:

  public function getInsertArticle()
  {
    // 插入一條數(shù)據(jù):
    $id = DB::table('articles')->insertGetId(
      ['title'=>'get more', 'body'=>'emmmmmm......']
    );
    dd($id);
  }

4 更新

  public function getUpdateArticle()
  {
    $result = DB::table('articles')->whereBetween('id', [1, 3])->update(['comment_count'=>0]);
    dd($result);
  }

↑ update還可以返回影響了幾條數(shù)據(jù)。

4.1 加/減快捷方法

  public function getUpdateArticle()
  {
    $result = DB::table('articles')->whereBetween('id', [1, 3])->increment('comment_count',2);
    dd($result);
  }

↑ increment接受1~2個(gè)參數(shù),第一個(gè)參數(shù)是列名,第二個(gè)參數(shù)是可選的表示增加幾(默認(rèn)是1),上面的語(yǔ)句是:comment_count這一列的值增加2。

  public function getUpdateArticle()
  {
    $result = DB::table('articles')->whereBetween('id', [1, 3])->decrement('comment_count',2);
    dd($result);
  }

↑ decrement接受1~2個(gè)參數(shù),第一個(gè)參數(shù)是列名,第二個(gè)參數(shù)是可選的表示減少幾(默認(rèn)是1),上面的語(yǔ)句是:comment_count這一列的值減少2。

你以為加減快捷方法只接收兩個(gè)參數(shù)么?nonono 它還可以接收第三個(gè)參數(shù):

  public function getUpdateArticle()
  {
    $result = DB::table('articles')->whereBetween('id', [1, 3])->increment('comment_count', 2, ['title' => 'testUpdate']);
    dd($result);
  }

↑ 它還可以在增加/減少時(shí)對(duì)其他列進(jìn)行修改。

5 刪除

  public function getDeleteArticle()
  {
    $result = DB::table('articles')->whereBetween('id', [1, 3])->delete();
    dd($result);
  }

↑ 用delete刪除數(shù)據(jù),它也返回有多少行被影響。

當(dāng)你想要?jiǎng)h除所有的列 并且把自增ID歸0的話 可以這么做:

  public function getDeleteArticle()
  {
    DB::table('articles')->truncate();
  }

6 鎖

查詢構(gòu)建器還包含一些方法幫助你在select語(yǔ)句中實(shí)現(xiàn)”悲觀鎖“??梢栽诓樵冎惺褂胹haredLock方法從而在運(yùn)行語(yǔ)句時(shí)帶一把”共享鎖“。共享鎖可以避免被選擇的行被修改直到事務(wù)提交:

DB::table('articles')->where('id', '>', 100)->sharedLock()->get();

此外你還可以使用lockForUpdate方法?!眆or update“鎖避免選擇行被其它共享鎖修改或刪除:

DB::table('articles')->where('id', '>', 100)->lockForUpdate()->get();

更多關(guān)于Laravel相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《Laravel框架入門(mén)與進(jìn)階教程》、《php優(yōu)秀開(kāi)發(fā)框架總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總

希望本文所述對(duì)大家基于Laravel框架的PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • thinkPHP實(shí)現(xiàn)基于ajax的評(píng)論回復(fù)功能

    thinkPHP實(shí)現(xiàn)基于ajax的評(píng)論回復(fù)功能

    這篇文章主要介紹了thinkPHP實(shí)現(xiàn)基于ajax的評(píng)論回復(fù)功能,結(jié)合實(shí)例形式分析了thinkPHP實(shí)現(xiàn)ajax評(píng)論回復(fù)所涉及的控制器、視圖、樣式、js使用post進(jìn)行ajax提交、并附帶了相應(yīng)的SQL語(yǔ)句,需要的朋友可以參考下
    2018-06-06
  • PHP生成隨機(jī)密碼方法匯總

    PHP生成隨機(jī)密碼方法匯總

    使用PHP開(kāi)發(fā)應(yīng)用程序,尤其是網(wǎng)站程序,常常需要生成隨機(jī)密碼,如用戶注冊(cè)生成隨機(jī)密碼,用戶重置密碼也需要生成一個(gè)隨機(jī)的密碼,接下來(lái)小編給大家介紹php生成隨機(jī)密碼五種方法,需要的朋友可以參考下
    2015-08-08
  • 淺談PHP中的那些魔術(shù)常量

    淺談PHP中的那些魔術(shù)常量

    這篇文章主要介紹了淺談PHP中的那些魔術(shù)常量,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-12-12
  • PHP 圖片上傳實(shí)現(xiàn)代碼 帶詳細(xì)注釋

    PHP 圖片上傳實(shí)現(xiàn)代碼 帶詳細(xì)注釋

    PHP 圖片上傳實(shí)現(xiàn)代碼 帶詳細(xì)注釋?zhuān)矚g的朋友可以學(xué)習(xí)下。
    2010-04-04
  • Laravel框架用戶登陸身份驗(yàn)證實(shí)現(xiàn)方法詳解

    Laravel框架用戶登陸身份驗(yàn)證實(shí)現(xiàn)方法詳解

    這篇文章主要介紹了Laravel框架用戶登陸身份驗(yàn)證實(shí)現(xiàn)方法,結(jié)合實(shí)例形式分析了Laravel框架用戶登陸驗(yàn)證的原理、實(shí)現(xiàn)方法與相關(guān)注意事項(xiàng),需要的朋友可以參考下
    2017-09-09
  • PHP圖形計(jì)數(shù)器程序顯示網(wǎng)站用戶瀏覽量

    PHP圖形計(jì)數(shù)器程序顯示網(wǎng)站用戶瀏覽量

    這篇文章主要為大家分享了PHP圖形計(jì)數(shù)器程序,直觀的顯示網(wǎng)站用戶瀏覽量,感興趣的小伙伴們可以參考一下
    2016-07-07
  • 基于PHP選項(xiàng)與信息函數(shù)的使用詳解

    基于PHP選項(xiàng)與信息函數(shù)的使用詳解

    本篇文章是對(duì)PHP選項(xiàng)與信息函數(shù)的使用進(jìn)行了詳細(xì)的分析介紹。需要的朋友參考下
    2013-05-05
  • ThinkPHP3.2框架使用addAll()批量插入數(shù)據(jù)的方法

    ThinkPHP3.2框架使用addAll()批量插入數(shù)據(jù)的方法

    這篇文章主要介紹了ThinkPHP3.2框架使用addAll()批量插入數(shù)據(jù)的方法,結(jié)合實(shí)例形式分析了thinkPHP針對(duì)單條數(shù)據(jù)插入及批量數(shù)據(jù)插入操作的相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下
    2017-03-03
  • PHP內(nèi)核學(xué)習(xí)教程之php opcode內(nèi)核實(shí)現(xiàn)

    PHP內(nèi)核學(xué)習(xí)教程之php opcode內(nèi)核實(shí)現(xiàn)

    opcode是計(jì)算機(jī)指令中的一部分,用于指定要執(zhí)行的操作, 指令的格式和規(guī)范由處理器的指令規(guī)范指定,通過(guò)本文給大家介紹PHP內(nèi)核學(xué)習(xí)教程之php opcode內(nèi)核實(shí)現(xiàn),感興趣的朋友一起學(xué)習(xí)吧
    2016-01-01
  • 顯示youtube視頻縮略圖和Vimeo視頻縮略圖代碼分享

    顯示youtube視頻縮略圖和Vimeo視頻縮略圖代碼分享

    這篇文章主要介紹了顯示youtube視頻縮略圖和Vimeo視頻縮略圖的代碼,需要的朋友可以參考下
    2014-02-02

最新評(píng)論