我的COLORS (varchar(50))
表格SHIRTS
中有一个字段,其中包含逗号分隔的字符串,例如1,2,5,12,15,
。每个数字代表可用的颜色。
在运行查询select * from shirts where colors like '%1%'
以获取所有红色衬衫(颜色= 1)时,我还获得了颜色为灰色(= 12)和橙色(= 15)的衬衫。
我应该如何重写查询,以便仅选择颜色1而不是选择所有包含数字1的颜色?
我的COLORS (varchar(50))
表格SHIRTS
中有一个字段,其中包含逗号分隔的字符串,例如1,2,5,12,15,
。每个数字代表可用的颜色。
在运行查询select * from shirts where colors like '%1%'
以获取所有红色衬衫(颜色= 1)时,我还获得了颜色为灰色(= 12)和橙色(= 15)的衬衫。
我应该如何重写查询,以便仅选择颜色1而不是选择所有包含数字1的颜色?
Answers:
经典方法是在左右添加逗号:
select * from shirts where CONCAT(',', colors, ',') like '%,1,%'
但是find_in_set也可以:
select * from shirts where find_in_set('1',colors) <> 0
在这种情况下,FIND_IN_SET是您的朋友
select * from shirts where FIND_IN_SET(1,colors)
看一下MySQL 的FIND_IN_SET函数。
SELECT *
FROM shirts
WHERE FIND_IN_SET('1',colors) > 0
这肯定会起作用,而我实际上已经尝试了:
lwdba@localhost (DB test) :: DROP TABLE IF EXISTS shirts;
Query OK, 0 rows affected (0.08 sec)
lwdba@localhost (DB test) :: CREATE TABLE shirts
-> (<BR>
-> id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
-> ticketnumber INT,
-> colors VARCHAR(30)
-> );<BR>
Query OK, 0 rows affected (0.19 sec)
lwdba@localhost (DB test) :: INSERT INTO shirts (ticketnumber,colors) VALUES
-> (32423,'1,2,5,12,15'),
-> (32424,'1,5,12,15,30'),
-> (32425,'2,5,11,15,28'),
-> (32426,'1,2,7,12,15'),
-> (32427,'2,4,8,12,15');
Query OK, 5 rows affected (0.06 sec)
Records: 5 Duplicates: 0 Warnings: 0
lwdba@localhost (DB test) :: SELECT * FROM shirts WHERE LOCATE(CONCAT(',', 1 ,','),CONCAT(',',colors,',')) > 0;
+----+--------------+--------------+
| id | ticketnumber | colors |
+----+--------------+--------------+
| 1 | 32423 | 1,2,5,12,15 |
| 2 | 32424 | 1,5,12,15,30 |
| 4 | 32426 | 1,2,7,12,15 |
+----+--------------+--------------+
3 rows in set (0.00 sec)
试试看 !!!
如果颜色的设置或多或少是固定的,那么最有效,也最易读的方法是在应用中使用字符串常量,然后在查询中使用MySQL的SET
类型FIND_IN_SET('red',colors)
。当将SET
类型与FIND_IN_SET一起使用时,MySQL使用一个整数来存储所有值,并使用二进制"and"
操作来检查值的存在,这比扫描逗号分隔的字符串更有效。
在中SET('red','blue','green')
,'red'
将在内部存储为1
,'blue'
在内部将存储为,2
并且'green'
将在内部存储为4
。该值'red,blue'
将被存储为3
(1|2
)和'red,green'
作为5
(1|4
)。
如果您使用的是MySQL,则可以使用REGEXP方法...
http://dev.mysql.com/doc/refman/5.1/zh-CN/regexp.html#operator_regexp
因此,您将使用:
SELECT * FROM `shirts` WHERE `colors` REGEXP '\b1\b'
您实际上应该修复数据库架构,以便拥有三个表:
shirt: shirt_id, shirt_name
color: color_id, color_name
shirtcolor: shirt_id, color_id
然后,如果您要查找所有红色的衬衫,则可以执行以下查询:
SELECT *
FROM shirt, color
WHERE color.color_name = 'red'
AND shirt.shirt_id = shirtcolor.shirt_id
AND color.color_id = shirtcolor.color_id
select * from shirts where find_in_set('1',colors) <> 0
为我工作
1.对于MySQL:
SELECT FIND_IN_SET(5, columnname) AS result
FROM table
2.对于Postgres SQL:
SELECT *
FROM TABLENAME f
WHERE 'searchvalue' = ANY (string_to_array(COLUMNNAME, ','))
例
select *
from customer f
where '11' = ANY (string_to_array(customerids, ','))
您可以通过以下功能来实现。
运行以下查询以创建函数。
DELIMITER ||
CREATE FUNCTION `TOTAL_OCCURANCE`(`commastring` TEXT, `findme` VARCHAR(255)) RETURNS int(11)
NO SQL
-- SANI: First param is for comma separated string and 2nd for string to find.
return ROUND (
(
LENGTH(commastring)
- LENGTH( REPLACE ( commastring, findme, "") )
) / LENGTH(findme)
);
并像这样调用此函数
msyql> select TOTAL_OCCURANCE('A,B,C,A,D,X,B,AB', 'A');