Skip to content

Instantly share code, notes, and snippets.

@sola-msr
Last active October 5, 2018 02:29
Show Gist options
  • Save sola-msr/f59a0902d08e659e0d804c9b13b3a3fc to your computer and use it in GitHub Desktop.
Save sola-msr/f59a0902d08e659e0d804c9b13b3a3fc to your computer and use it in GitHub Desktop.
【Laravel】LaravelでDISTINCTを使用する、かつ実行されているSQLを確認してみる ref: https://qiita.com/sola-msr/items/ff857e51680404c4a439
self::where('user_id', $user_id)->distinct()->select('team_id')->get();
var_dump(self::where('user_id', $user_id)->distinct()->select('team_id')->toSql());
select distinct `team_id` from `tables` where `user_id` = ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment