Say you have two tables:
TA
- apk
- b
- a1
TB
- bpk
- b1
is the SQL INNER JOIN
statement reflexive in the way, that
SELECT TA.a1, TB.b1 FROM TA INNER JOIN TB ON TA.b = TB.bpk
is equivalent (in the way that the results are the same) to
SELECT TA.a1, TB.b1 FROM TB INNER JOIN TA ON TA.b = TB.bpk
?