Are the two SQL statements equivalent?
select * from tb1 {full, left, right} join tb2 on true
select * from tb1 inner join tb2 on true
In my opinion, I think these two statements are equivalent. But in PostgreSQL, it does not do the transformation. I do not know what other Databases do. Or is there any case I didn't consider?