0

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

?

niklasfi
  • 15,245
  • 7
  • 40
  • 54

0 Answers0