Moneylady
  • 0
Estimable Member

In SqL, what is the difference between EQUI join and INNER join?

  • 0

In SqL, what is the difference between EQUI join and INNER join?

Share

Related Questions

Leave an answer

You must login to add an answer.

1 Answer

  1. In Inner-join, only rows from joined tables are returned where a certain condition is met. This condition may be of equality, which means we would have an Equi-join. In the case the condition is not that of equality, it is called non equi-join.  

    In Inner-join, only rows from joined tables are returned where a certain condition is met. This condition may be of equality, which means we would have an Equi-join. In the case the condition is not that of equality, it is called non equi-join.

     

    See less