在表中f_stock
,我有一个清单中所有项目的列表。列中的整数type
是指id
表中的f_type
。
我想f_stock
用f_type.id
代替输出表的内容f_stock.type
。这是怎么做到的?
在过去,我已经按照这些思路做了一些事情:
$query = "SELECT * FROM `f_stock`";
$result = mysql_query ($query) or die (mysql_error ());
while ($row = mysql_fetch_array ($result, MYSQL_ASSOC)) {
$data[] = $row;
}
print_r ($data);
f_stock.type
为了在列中查找整数,f_type.id
我在while循环内创建了一个辅助 $query/$result。
表f_stock
:
`type` | `size` | `length`
-------|--------|---------
1 | 3 | 12
1 | 3 | 16
2 | 3 | 20
2 | 3 | 25
1 | 4 | 12
1 | 4 | 16
3 | 4 | 20
表f_type
:
`id` | `type`
------|---------
1 | 'Type 1'
2 | 'Type 2'
3 | 'Type 3'
4 | 'Type 4'
5 | 'Type 5'
6 | 'Type 6'
7 | 'Type 7'