1. 程式人生 > 程式設計 >laravel5.6框架操作資料curd寫法(查詢構建器)例項分析

laravel5.6框架操作資料curd寫法(查詢構建器)例項分析

本文例項講述了laravel5.6框架操作資料curd寫法(查詢構建器)。分享給大家供大家參考,具體如下:

laravel5.6 資料庫操作-查詢構建器

<?php
//laravel5.6 語法 demo示例
namespace App\Http\Controllers;//命名該控制App空間下名稱
use Illuminate\Support\Facades\DB;//使用DB操作資料庫
use App\Http\Controllers\Controller;//繼承基礎控制器
class UserController extends Controller
{
 /**
  * 展示應用的使用者列表.
  *
  * @return Response
  */
 public function index()
 {
  //DB使用為每種操作提供了相應方法:select(查),update(修改),insert(插入),delete(刪除),statement(宣告)
  //建議佔位符,其他框架通用性強
  //原生sql寫法
  $data = DB::select('select * from users where id = :id and name = :name ',[':id' => 1,':name' =>'測試']);
  //查方法
  //get() 方法獲取表中所有記錄(獲取多行多列)
  $data = DB::table('users')->get();
  //first() 方法將會返回單個物件(獲取一行一列)
  //where() 方法查詢指定條件物件
  $data = DB::table('users')->where('id','name','3','測試')->first();
  //select() 方法可以查詢指定自定義欄位
  $data = DB::table('users')->select('id','email')->get();
  //value() 方法從結果中獲取單個值,該方法會直接返回指定列的值:
  $data = DB::table('users')->where('name','測試')->value('email');
  //pluck() 方法獲取單個列值的陣列
  $data = DB::table('users')->pluck('name');
  //count() 統計數量
  $data = DB::table('users')->count();
  //exists() 方法來判斷匹配查詢條件的結果是否存在
  $data=DB::table('users')->where('id',1)->exists();
  //join() 方法連表查詢
  $data = DB::table('users')
   ->join('ceshi','users.id','=','ceshi.id')
   ->select('users.*','ceshi.name')
   ->get();
  //leftJoin() 方法左連表查詢
  $data = DB::table('users')
   ->leftJoin('ceshi','ceshi.name')
   ->get();
  //where() 引數說明:(一)引數是列名,(二)引數是操作符,(三)引數是該列要比較的值
  $data = DB::table('users')
   ->where('id','>=',1)
   ->where('name','like','測試%')
   ->get();
  //傳遞條件陣列到where中寫法,建議多where查詢使用這個方法
  $data = DB::table('users')
   ->where([
    ['id',1],['name','測試%']
   ])
   ->get();
  //whereBetween() 方法驗證列值是否在給定值之間
  $data = DB::table('users')
   ->whereBetween('id',[1,3])->get();
  //whereIn 方法驗證給定列的值是否在給定陣列中:
  $data = DB::table('users')
   ->whereIn('id',2,3])
   ->get();
  //orderBy() 方法排序
  $data = DB::table('users')
   ->orderBy('id','desc')
   ->get();
  //insert()  方法插入記錄到資料表
  //insertGetId() 方法插入記錄並返回自增ID值
  $data=DB::table('users')->insert(
   [
    'name'=>'測試','email' => 'ceshi.com','password' => 'ceshi'
   ]
  );
  //update() 方法修改記錄
  $data =DB::table('users')
   ->where('id',1)
   ->update(['name' => '測試']);
  //delete() 方法刪除記錄
  $data=DB::table('users')->where('id','>',10)->delete();
  //paginate() 方法分頁 每頁顯示數量
  //注意:目前使用 groupBy 的分頁操作不能被Laravel有效執行
  $data = DB::table('users')->paginate(2);
  //前臺分頁中連結附加引數實現分頁
  $getName = $GET['name']?:'';
  $data = DB::table('users')
    ->select('id','age')
    ->where('name',$getName.'%')
    ->paginate(2);
  //返回給前端檢視資料
  return $this->view('index',['data'=>$data,'namePage'=>$getName]);
  //前端引用程式碼 
  //appends 方法新增查詢引數到分頁連結查詢字串; 新增 &name=$namePage到每個分頁連結中.
  {{ $data->appends(['name' => $namePage])->links() }}
  //simplePaginate() 方法分頁檢視中簡單的顯示“下一頁”和“上一頁”連結
  $data = DB::table('users')->simplePaginate(2);
  //返回給前端檢視資料
  return $this->view('index',['data'=>$data]);
  //前端簡單引用程式碼 
  <div class="container">
  @foreach ($users as $user)
   {{ $user->name }}
  @endforeach
  </div>
  {{ $data->links() }}
  //原生分頁寫法
  $page = 2;
  $pageSize = 1;
  $offset = ($page - 1) * $pageSize;
  $result = DB::table('picasa')
   ->where('title','%'.$title.'%')
   ->offset($offset)
   ->limit($pageSize)
   ->get();
  //返回資料檢視檔案
  return $this->view('index',['result' => $result]);
 }
}

groupBy 對查詢結果進行分組出現問題

當select和groupBy中列表不一致時候會報錯。mysql從5.7以後,預設開啟group by的嚴格模式。

解決方法:找到config/database​.php 在mysql下面把'strict' => true,改為false。[建議不要修改。寫對正確操作語法。]

例如:

$booked = DB::table('booked_user')
 ->select('game_id',DB::raw('count(*) as total'))
 ->groupBy('game_id')
 ->get();

開啟sql查詢日誌

DB::connection()->enableQueryLog();//開啟QueryLog
$data = DB::table('users')->select('id','email')->get();//執行sql
dump(DB::getQueryLog());//sql語句和查詢時間

寫入日誌資訊

八種日誌級別:emergency、alert、critical、error、warning、 notice、info 和 debug
預設日誌存放位置: /storage/logs/laravel.log

引用: use Illuminate\Support\Facades\Log;

Log::emergency(string $message,array $context = []);
Log::alert(string $message,array $context = []);
Log::critical(string $message,array $context = []);
Log::error(string $message,array $context = []);
Log::warning(string $message,array $context = []);
Log::notice(string $message,array $context = []);
Log::info(string $message,array $context = []);
Log::debug(string $message,array $context = []);

laravel5.6 操作資料ORM

更多關於Laravel相關內容感興趣的讀者可檢視本站專題:《Laravel框架入門與進階教程》、《php優秀開發框架總結》、《php面向物件程式設計入門教程》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧彙總》

希望本文所述對大家基於Laravel框架的PHP程式設計有所幫助。