laravel 數據操做

1、基本概念和概述php

① StdClass 對象=>基礎的對象
② Eloquent 模型對象(Model 對象)=>和模型相關的類對象
③ Eloquent 集合=>能夠簡單理解爲對象數組,裏面的每個元素都是一個Model 對象
④ 普通查詢構造器返回的是StcClass對象或者是由基礎對象組成的數組
⑤ Eloquent ORM返回的是 Eloquent對象(和模型相關的)或者是由模型對象組成的集合

2、建立 Mouldsql

 

代碼以下json

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Loan extends Model
{
    protected $fillable = [];

    protected $hidden = [];

    /**
     * Controller  與模型關聯的表
     * author      Jack
     * version     2018/12/22  14:39
     */
    protected $table = 'loan';

    /**
     * Controller  指示是否對模型進行時間戳。
     * author      Jack
     * version     2018/12/22  14:39
    */
    public $timestamps = false;

    /**
     * Controller  模型的日期列的存儲格式。
     * author      Jack
     * version     2018/12/22  14:54
    */
    protected $dateFormat = 'U';

}

 

3、Eloque 經常使用數據操做數組

 A 查詢spa

1) Customer::first(); ① 返回值:對象 ② 返回表中第一條數據

2) Customer::find(1); ① 返回值:對象 ② 返回表中指定id的數據 ③ 必傳參數 id

3) Customer::all(); ① 返回值:集合 ② 返回表中全部數據 ③ 集合裏面的每個元素都是一個對象

4) Customer::get(); ① 返回值:集合 ② 返回表中全部數據 ③ 集合裏面的每個元素都是一個對象

B 刪除3d

5) Customer::find(2)->delete(); ① 返回值:truefalse ② 刪除指定id的單條數據 ③ 必傳參數 id

6) Customer::destroy([1,2]); ① 返回值:刪除條數 ②刪除指定id的單條或多條數據 ③ 必傳參數 id

7) Customer::where('id', '>', 1)->delete(); ① 返回值:刪除條數

C 保存code

8) $customer->save()   

 

9) Customer::insert(array(array(''=>,''=>),......)  ① 返回值:truefalse ② 參數類型數組

D 修改orm

10) Customer::where('id', '>', 10)->update(['seller_id'=>3]);① 返回值:修改條數

 

4、能夠了解操做對象

 

① Customer::truncate()                                             清空數據表
② Customer::where('id', '=', '1')->get(array('name','mobile'));    配合查詢條件獲取多條數據
③ Customer::pluck('mobile');            返回表中該字段的第一條記錄
④ Customer::lists('artist');            返回一列數據 
⑤ Customer::where('mobile', '=', '1308744081')->toSql();     獲取查詢的sql語句,僅用於條件,不能用戶帶get()之類的帶查詢結果的查詢中

注:直接使用return 查詢結果爲json格式的數據這裏使用的User爲model名稱

 

 A 最普通的條件查詢 Customer::where('字段名','查詢字符','限制條件')     blog

 eg:Customer::where('name', 'LIKE', '...%')

 B 多條件查詢,使用多個where   

 eg: Customer::where('name', 'LIKE', '...%')->where('text', '=', '中國')->get();

 C 或查詢操做使用orWhere(),使用方法通where

 D 直接用sql語句寫查詢條件    

 eg:Customer::whereRaw('name= ? and title LIKE ?', array('中國', '...%'))
 E 其餘查詢方法
 whereIn(),whereBetween(),whereNested()子查詢,orWhereNested(),whereNotIn(),whereNull(),whereNotNull() 

 F 使用order關鍵字:

  eg:Customer::where('sex', '=', 1)->orderBy('age')->get();   默認asc

  orderBy('year', 'desc')

 G 限制結果數量 take()方法

eg:Customer::take(2)->get();                          
至關於select * from customer limit 2
相關文章
相關標籤/搜索