How MySQL queries a comma-delimited string in a field

Source: Internet
Author: User

First we create a comma-delimited string.

CREATE TABLE Test (id int (6) NOT NULL auto_increment,primary KEY (ID), pname varchar (a) not null,pnum varchar (a) NOT null) ;

Then insert the test data with a comma-delimited
INSERT into Test (pname,pnum) VALUES (' Product 1 ', ' 1,2,4 ');
INSERT into Test (pname,pnum) VALUES (' Product 2 ', ' 2,4,7 ');
INSERT into Test (pname,pnum) VALUES (' Product 3 ', ' 3,4 ');
INSERT into Test (pname,pnum) VALUES (' Product 4 ', ' 1,7,8,9 ');

INSERT into Test (pname,pnum) VALUES (' Product 5 ', ' 33,4 ');


find records with 3 or 9 in the Pnum field
Mysql> SELECT * FROM Test WHERE find_in_set (' 3 ', pnum) OR find_in_set (' 9 ', pnum);
+----+-------+---------+
| ID | PName | Pnum |
+----+-------+---------+
| 3 | Product 3 | 3,4 |
| 4 | Product 4 | 1,7,8,9 |
+----+-------+---------+
2 rows in Set (0.03 sec)


using the regular
Mysql> SELECT * FROM Test WHERE pnum REGEXP ' (3|9) ';
+----+-------+---------+
| ID | PName | Pnum |
+----+-------+---------+
| 3 | Product 3 | 3,4 |
| 4 | Product 4 | 1,7,8,9 |
| 5 | Product 5 | 33,4 |
+----+-------+---------+
3 Rows in Set (0.02 sec)
This results in multiple records, such as 33 being found.


In a different way

    Mysql> SELECT * FROM Test WHERE CONCAT (',', Pnum,','  [^0-9]+[3|9][^0-9]+';  

+----+-------+---------+
| ID | PName | Pnum |
+----+-------+---------+
| 3 | Product 3 | 3,4 |
| 4 | Product 4 | 1,7,8,9 |
+----+-------+---------+
2 rows in Set (0.01 sec)


Problem solving ...

You can also have other algorithms:
where Concat (', ', Responsible_user, ', ') like '%,1,% '

Reprint: http://blog.csdn.net/xm1331305/article/details/9950843

How MySQL queries a comma-delimited string in a field

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.