通过mysql字符串迭代

时间:2013-08-22 22:44:23

标签: mysql string function iterator arrays

我想迭代一个字符串并将特定值存储在数组(或类似数组的东西)中,具体取决于该字符串中的各个字符。

伪代码:

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中执行此操作的最快方法是什么?

0 个答案:

没有答案