"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Search Within a Comma-Delimited List in MySQL?

How to Search Within a Comma-Delimited List in MySQL?

Posted on 2025-02-22
Browse:102

How to Search Within a Comma-Delimited List in MySQL?

Searching within a Comma-Delimited List in MySQL

Your MySQL table contains a field with a comma-separated list of IDs. You wish to search within this field using a query like SELECT ... WHERE field LIKE '%1%'. However, this query matches many entries due to the overlapping IDs.

To address this issue, consider the FIND_IN_SET function:

SELECT ... WHERE FIND_IN_SET('1', field)

The FIND_IN_SET function takes two arguments: the string you're searching for and the comma-separated list. It returns the position of the string within the list, or 0 if not found.

Using this function, your query can precisely locate IDs within the comma-separated list, regardless of their position. This will provide you with more accurate search results and avoid the issue of matching entries due to overlapping IDs.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3