How to get the following output in mysql table?
source table:
id values
1 a
2 b
3 c
4 d
5 e
Result:
id values
1 a
2 ab
3 abc
4 abcd
5 abcde
How to get the following output in mysql table?
source table:
id values
1 a
2 b
3 c
4 d
5 e
Result:
id values
1 a
2 ab
3 abc
4 abcd
5 abcde