我想知道为什么需要将 (primary key = foreign key) 放在 where 语句中。表格通过这些标准相互关联。那么,为什么每个人都在where子句或 *join*s 中使用它?
我的意思是,而不是
select a.name, b.name from a,b where (a.fk = b.pk) AND (something = "something")
如果有人说
... 选择 a.name, b.name from a,b where (something = "something")
够了吗?