php foreach循环来自2个表的mysql数据?

时间:2015-07-25 05:20:50

标签: php mysql loops foreach while-loop

我有两个表,两个表只有一列。

Table 1:  Merchants
Column:  merchant  (20 entries)

Table 2:  Categories
Column: category  (600 entries)

我正在尝试为每个循环编写一个以选择这两个表中的所有条目,并以此格式列出所有可能的组合。例如..

merchant1 category1
merchant1 category2
merchant1 category3... all the way to end of categories
merchant2 category1
merchant2 category2
merchant2 category3...all the way to end of categories
etc...

我应该使用一个mysql命令来选择数据,然后对每个循环使用一个?...或者我应该运行2个mysql命令并为多个数组上的每个循环使用嵌套?

3 个答案:

答案 0 :(得分:3)

SELECT `Merchants`.`merchant`, `Categories`.`category`
FROM `Merchants`
JOIN `Categories`;

然后对结果做一个foreach。

答案 1 :(得分:2)

SELECT table1.(put the star sign), table2.(put the star sign)
FROM table1
INNER JOIN table2 ON 1=1

答案 2 :(得分:1)

使用外连接,

SELECT * FROM Merchants, Categories    //Number of Records:20 X 600