标签: 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 ....