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
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
join
is the same as inner join
.