I want to use my function like this
SELECT BaseSplit(line,';') FROM table
is there any way to do that ???
I try CROSS APPLY but it not what I want
My table has a column named line
line
______
15;2;5
NULL
10;3;6
I want to split this column to be like
15
2
5
Null
10
3
6
Is there a string function that does this automatically?
If not, is it possible to write my own function?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…