最佳答案
为简单起见,假设所有相关字段都是NOT NULL
。
你可以这样做:
SELECTtable1.this, table2.that, table2.somethingelseFROMtable1, table2WHEREtable1.foreignkey = table2.primarykeyAND (some other conditions)
否则:
SELECTtable1.this, table2.that, table2.somethingelseFROMtable1 INNER JOIN table2ON table1.foreignkey = table2.primarykeyWHERE(some other conditions)
这两个在MySQL
中以相同的方式工作吗?