可能不是标题的最佳描述,但我真的想不出任何东西。我想要发生的是,我可以创建一个查询,使用 userID 作为关系从列表中选择类型,然后选择城镇。
TABLE listings
saleID userID type description
1 23 clothing nice clothing
2 45 clothing More nice Clothing
TABLE users
userID country county town
23 uk county townname1
24 uk county townname2
变量在 url 中设置为 get 例如) ?type=clothing&town=townname2
if (!isset($type)){
$query = "SELECT * FROM listings";
}
if (isset($type)) {
$query = "SELECT * FROM listings WHERE type = '{$type}'";
}
这是我坚持的一点我想获取所有带有变量 $type '服装'的列表,然后从变量 $town 的城镇中选择用户
if (isset($town)) {
$query = "SELECT users.town listings.userID listings.type FROM listings
WHERE type = '{$type}'
INNER JOIN users
ON users.town = '{$town}'";
}
希望我已经解释得足够清楚了。请帮我完成最后一个查询