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.
我有一个包含可能a,b,c和的专栏city。
a,b,c
city
它们中的一个、多个或全部可能以逗号分隔出现在每一行上。
我正在尝试进行查询,在其中查找包含c但不包含的所有行city。
c
我已经尝试过LIKE %c%,LIKE c但这不会返回正确的结果。我开始关注 Regexp,但感觉必须有更好的解决方案。
LIKE %c%
LIKE c
对此有什么想法吗?
用于FIND_IN_SET匹配逗号分隔值:
FIND_IN_SET
select * from TableName where FIND_IN_SET("c", column)