匯總CURD和查詢

查詢

獲取多條數(shù)據(jù)

$users = DB::table('users')->get();

獲取單條數(shù)據(jù)

$user = DB::table('users')->where('name', 'John')->first();

獲取單條數(shù)據(jù)單個列

$name = DB::table('users')->where('name', 'John')->pluck('name');

獲取單個值的多條數(shù)據(jù)

$roles = DB::table('roles')->lists('title');

獲取數(shù)組的kv列表

DB::table('roles')->pluck('title','key');

按字段條件去重

DB::table('roles')->distinct('key');

只返回某個字段的值,以string返回

DB::table('roles')->value('title');

查詢中應用查詢

$query = DB::table('users')->select('name');
$users = $query->addSelect('age')->get();

查詢條件

$users = DB::table('users')->where('votes', '>', 100)->get();
$users = DB::table('users')->where('votes', '>', 100)->orWhere('name', 'John')->get();
$users = DB::table('users')->whereBetween('votes', array(1, 100))->get();
$users = DB::table('users')->whereNotBetween('votes', array(1, 100))->get();
$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get();
$users = DB::table('users')->whereNotIn('id', array(1, 2, 3))->get();
$users = DB::table('users')->whereNull('updated_at')->get();
$users = DB::table('users')->orderBy('name', 'desc')->groupBy('count')->having('count', '>', 100)->get();
$users = DB::table('users')->skip(10)->take(5)->get();  //Offset & Limit

復合查詢

  • 基礎的JOIN
DB::table('users')
  ->join('contacts', 'users.id', '=', 'contacts.user_id')
  ->join('orders', 'users.id', '=', 'orders.user_id')
  ->select('users.id', 'contacts.phone', 'orders.price')
  ->get();
  • left join
DB::table('users')
  ->leftJoin('posts', 'users.id', '=', 'posts.user_id')
  ->get();
  DB::table('users')
  ->join('contacts', function($join)
  {
  $join->on('users.id', '=', 'contacts.user_id')->orOn(...);
  })
  ->get();
  DB::table('users')
  ->join('contacts', function($join)
  {
  $join->on('users.id', '=', 'contacts.user_id')
  ->where('contacts.user_id', '>', 5);
  })
  ->get();
  • 分組
DB::table('users')
->where('name', '=', 'John')
->orWhere(function($query)
{
$query->where('votes', '>', 100)
->where('title', '<>', 'Admin');
})
->get();
select * from users where name = 'John' or (votes > 100 and title <> 'Admin')

DB::table('users')
  ->whereExists(function(query)   {query->select(DB::raw(1))
  ->from('orders')
  ->whereRaw('orders.user_id = users.id');
  })
  ->get();

select * from userswhere exists (
select 1 from orders where orders.user_id = users.id
)

聚合查詢

$users = DB::table('users')->count();
$price = DB::table('orders')->max('price');
$price = DB::table('orders')->min('price');
$price = DB::table('orders')->avg('price');
$total = DB::table('users')->sum('votes');

聚合結合復合查詢

$users = DB::table('users')
->select(DB::raw('count(*) as user_count, status'))
->where('status', '<>', 1)
->groupBy('status')
->get();

遞增和遞減

DB::table('users')->increment('votes');
DB::table('users')->increment('votes', 5);
DB::table('users')->decrement('votes');
DB::table('users')->decrement('votes', 5);
  • 指定額外的列更新:
DB::table('users')->increment('votes', 1, array('name' => 'John'));

插入

  • 插入
DB::table('users')->insert(
array('email' => 'john@example.com', 'votes' => 0)
);
  • 插入后獲取自增ID
$id = DB::table('users')->insertGetId(
array('email' => 'john@example.com', 'votes' => 0)
);
  • 多條記錄一起插入
DB::table('users')->insert(array(
array('email' => 'taylor@example.com', 'votes' => 0),
array('email' => 'dayle@example.com', 'votes' => 0),
));

更新

DB::table('users')->where('id', 1)->update(array('votes' => 1));

刪除

  • 刪除指定條件的數(shù)據(jù)
DB::table('users')->where('votes', '<', 100)->delete();
  • 刪除表里所有數(shù)據(jù)
DB::table('users')->delete();
  • 刪除這個表
DB::table('users')->truncate();

聯(lián)盟2個查詢; unionAll方法也可以,有相同的方法簽名。

$first = DB::table('users')->whereNull('first_name');
$users = DB::table('users')->whereNull('last_name')->union($first)->get();

共享鎖

DB::table('users')->where('votes', '>', 100)->sharedLock()->get();

更新鎖

DB::table('users')->where('votes', '>', 100)->lockForUpdate()->get();

緩存

查詢的結果將為十分鐘被緩存般甲。查詢結果緩存時,不會對數(shù)據(jù)庫運行,結果將從默認的緩存加載驅動程序指定您的應用程序氧吐。

$users = DB::table('users')->remember(10)->get();

如果您使用的是支持緩存的司機,還可以添加標簽來緩存:

$users = DB::table('users')->cacheTags(array('people', 'authors'))->remember(10)->get();
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末裹赴,一起剝皮案震驚了整個濱河市衅谷,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌扑庞,老刑警劉巖淡溯,帶你破解...
    沈念sama閱讀 211,948評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件暇昂,死亡現(xiàn)場離奇詭異仰担,居然都是意外死亡假残,警方通過查閱死者的電腦和手機滩援,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,371評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來膘侮,“玉大人屈糊,你說我怎么就攤上這事∏砹耍” “怎么了逻锐?”我有些...
    開封第一講書人閱讀 157,490評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長雕薪。 經(jīng)常有香客問我昧诱,道長,這世上最難降的妖魔是什么蹦哼? 我笑而不...
    開封第一講書人閱讀 56,521評論 1 284
  • 正文 為了忘掉前任鳄哭,我火速辦了婚禮,結果婚禮上纲熏,老公的妹妹穿的比我還像新娘。我一直安慰自己锄俄,他們只是感情好局劲,可當我...
    茶點故事閱讀 65,627評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著奶赠,像睡著了一般鱼填。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上毅戈,一...
    開封第一講書人閱讀 49,842評論 1 290
  • 那天苹丸,我揣著相機與錄音愤惰,去河邊找鬼。 笑死赘理,一個胖子當著我的面吹牛宦言,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播商模,決...
    沈念sama閱讀 38,997評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼奠旺,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了施流?” 一聲冷哼從身側響起响疚,我...
    開封第一講書人閱讀 37,741評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎瞪醋,沒想到半個月后忿晕,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,203評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡银受,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,534評論 2 327
  • 正文 我和宋清朗相戀三年践盼,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蚓土。...
    茶點故事閱讀 38,673評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡宏侍,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蜀漆,到底是詐尸還是另有隱情谅河,我是刑警寧澤,帶...
    沈念sama閱讀 34,339評論 4 330
  • 正文 年R本政府宣布确丢,位于F島的核電站绷耍,受9級特大地震影響,放射性物質發(fā)生泄漏鲜侥。R本人自食惡果不足惜褂始,卻給世界環(huán)境...
    茶點故事閱讀 39,955評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望描函。 院中可真熱鬧崎苗,春花似錦、人聲如沸舀寓。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,770評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽互墓。三九已至必尼,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背判莉。 一陣腳步聲響...
    開封第一講書人閱讀 32,000評論 1 266
  • 我被黑心中介騙來泰國打工豆挽, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人券盅。 一個月前我還...
    沈念sama閱讀 46,394評論 2 360
  • 正文 我出身青樓帮哈,卻偏偏與公主長得像,于是被迫代替她去往敵國和親渗饮。 傳聞我的和親對象是個殘疾皇子但汞,可洞房花燭夜當晚...
    茶點故事閱讀 43,562評論 2 349

推薦閱讀更多精彩內(nèi)容