Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Last active October 16, 2024 09:52
Show Gist options
  • Save vielhuber/da27462b619e45b12a1086dc6ff562d4 to your computer and use it in GitHub Desktop.
Save vielhuber/da27462b619e45b12a1086dc6ff562d4 to your computer and use it in GitHub Desktop.
query builder and or where #laravel
SELECT *
FROM table
WHERE
    col1 = 'foo'
    AND
    col2 = 'foo'
    AND (
      col3 = 'foo'
      OR
      col4 = 'foo'
      OR
      col5 = 'foo'
    )
    AND
    (
       col3 = 'foo'
       OR
       (
         col4 = 'foo'
         AND
         col5 = 'foo'
       )
    )
    AND
    (
       col3 = 'foo'
       AND
       (
         col4 = 'foo'
         OR
         col5 = 'foo'
       )
    );
DB::table('table')
    ->where('col1', 'foo')
    ->where('col2', 'foo')
    ->where(function($query) {
        $query->where('col3', 'foo')
              ->orWhere('col4', 'foo')
              ->orWhere('col5', 'foo');
    })
    ->where(function($query) {
        $query->where('col3', 'foo')
              ->orWhere(function($query) {
                  $query->where('col4', 'foo')
                        ->where('col5', 'foo');
              });
    })
    ->where(function($query) {
        $query->where('col3', 'foo')
              ->where(function($query) {
                  $query->where('col4', 'foo')
                        ->orWhere('col5', 'foo');
              });
    })
    ->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment