Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 PHP 中实现 SQL-Join 功能的最佳方法是什么。我需要它,因为我必须从不同主机上的数据库中加入“表”数据(一个对象或数组数组等)。
有什么比遍历所有行更好的想法吗?
注意:它不应该在 PHP 中 :)
只是一个建议,如果您的键相同,则创建一个以键为索引的多维数组。然后相应地分配任何数据。像 array[key][valuefromtable1]=array(); 数组[key][valuefromtable2]=array();