-4

Outer join or full join is possible in MySQL Laravel?

OMR
  • 11,736
  • 5
  • 20
  • 35
kanak
  • 19
  • 2
  • Outer join example: https://stackoverflow.com/questions/28481321/how-to-do-a-left-outer-join-with-laravel. Also check out documentation https://laravel.com/docs/7.x/queries#joins – zedfoxus Jun 03 '20 at 14:44
  • 1
    Which outer join? – jarlh Jun 03 '20 at 14:46

1 Answers1

0

Lavarel does implement leftJoin (which I suppose is what you mean by outer join), as described in the documentation - see section Left Join / Right Join Clause.

full join is not supported in MySQL, nor in Lavarel.

GMB
  • 216,147
  • 25
  • 84
  • 135