3

When you write a join statement, and just use 'join' does that default to any join? Or is join also a type of join statement?

select * from a join b on a.c = b.c
peterh
  • 11,875
  • 18
  • 85
  • 108
finn green
  • 187
  • 1
  • 1
  • 6

1 Answers1

4

join is the same as inner join.

RedGreenCode
  • 2,195
  • 1
  • 25
  • 33