如何在mysql中创建一个函数,使用逗号将字符串拆分为行

时间:2014-12-12 09:07:46

标签: mysql function mysqli

我想创建或使用一个预定义的函数,它接受输入字符串“1,2,3,4,...”,并且应该通过使用逗号(,)分割来显示行中的结果

input :

select * from fun_split("1,2,3,4,...",',');

1 2 3 4 .... should be shown in rows.

1st row -> 1
2nd row -> 2
....

0 个答案:

没有答案