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.
假设我有一个字符串集 {'15, 1, 5, 4'} 存储在 MySQL 变量中。有没有办法在不知道第一个逗号出现的索引的确切位置的情况下从集合中只删除“15”?
这意味着如果在第一个位置有另一组具有不同长度的成员,它应该也可以工作。
select Mid('15, 1, 5, 4',locate(',','15, 1, 5, 4')+1)