我想遍历一个字符串并将特定值存储在一个数组(或类似数组的东西)中,具体取决于该字符串中的各个字符。
伪代码:
myArrayThing = [string.length]
Foreach character in string {
if character is 'b'
myArrayThing.push(10);
else if character is 'a'
myArrayThing.push(5);
else
myArrayThing.push(99999);
}
在 Mysql 中最快的方法是什么?