LoginSignup
2
0

More than 3 years have passed since last update.

【サルが書く】EloquentでそれぞれのSELECTで取ってきたデータを、それぞれでソート(ORDER BY)してくっつけたい(UNION)

Last updated at Posted at 2020-12-02

わきゃ!!

GIGアドベントカレンダー2日目になります!
GIGメンバーの投稿はこちら👇 から見てみてね!
https://qiita.com/organizations/gig-inc

EloquentでそれぞれのSELECTで取ってきたデータを、それぞれでソートできないんですけど!

このようなことをしたかった

$taro = EloquentOffice::where('name', 'taro')
        ->orderBy('created_at', 'asc');

$jiro = EloquentOffice::where('name', 'jiro')
        ->orderBy('created_at', 'asc')
        ->union($taro)
        ->paginate();

これだとorderByがうまく動いてくれない

$taro = EloquentOffice::where('name', 'taro')
        ->limit(999999999999)
        ->orderBy('created_at', 'asc');

$jiro = EloquentOffice::where('name', 'jiro')
        ->limit(999999999999)
        ->orderBy('created_at', 'asc')
        ->union($taro)
        ->paginate();

これだとorderByがうまく動いてくれる

すべてのデータを取得してきて並び替える時は->limit(999999999999)をつけているがもっとスマートなやり方が無いでしょうか......

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0