我有两个表,第一个是产品,它有一些规格的产品列表,另一方面,我有一个客户表,他们想要什么类型的产品,他们可能想要下表中解释的任何城镇的产品,
产品表如
| id | owner | userid | city | town | status | price |
| 1 | jon spee | 10 | 10 | 4 | 0 | 10500 |
| 2 | Hiss Roe | 10 | 7 | 9 | 0 | 20000 |
| 3 | John Smi | 10 | 10 | 12 | 0 | 10000 |
客户端表式
| id | fullname | userid | city | towns | status | price |
| 1 | name 1 | 10 | 10 |4,8,6,2| 0 | 20000 |
| 2 | name 2 | 10 | 7 | 7,2,9 | 0 | 25000 |
| 3 | name 3 | 10 | 10 | 1 | 0 | 20000 |
MySQL查询:
SELECT *
FROM clients
INNER JOIN products
ON (
clients.userid = products.userid AND
clients.price >= products.price AND
clients.city = products.city AND
clients.status = products.status
我希望它也能在城镇中进行检查,比如它(动态(执行这个查询的每个城镇,
(products.town LIKE '%4%' OR products.town LIKE '%8%' OR products.town LIKE '%6%' OR products.town LIKE '%2%')
您可以使用此查询
SELECT *
FROM clients
INNER JOIN products
ON (
clients.userid = products.userid AND
clients.price >= products.price AND
clients.city = products.city AND
find_in_set(clients.town, products.town) AND
clients.status = products.status
您也可以在php中获取它,并根据获取的结果创建您的语句
您的主要精力应该放在修复数据模型上。不要在字符串列中存储多个整数值。您应该有一个单独的表来存储客户端和城镇之间的关系,每个元组都在一个独立的行上。
也就是说:对于你目前的设计,你可以加入find_in_set()
:
on
clients.userid = products.userid
and ...
and find_in_set(product.town, client.towns)