Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在数组中获取包含参数传递的值的所有行。
如果我在列中有一个值(如“loren”或“ipsum”),我可以使用:
SELECT * FROM TableName WHERE FIND_IN_SET (Column, 'loren, ipsum') > 0
一切都会奏效。
但是,如果我的专栏包含诸如“Loren Ipsum Dolor”之类的内容,则FIND_IN_SET不起作用。考虑到列中的所有单词,如何检索值?
FIND_IN_SET