Hi,
i have a database table column whose content looks like 'abc-1-a-2-01'.
i know i can use split(column_name, '-'). this gives you 5 rows of data like
abc
1
a
2
01
however, i like to split this into 5 separate columns like
abc 1 a 2 01
any help would be greatly appreciated.
thanks.
i have a database table column whose content looks like 'abc-1-a-2-01'.
i know i can use split(column_name, '-'). this gives you 5 rows of data like
abc
1
a
2
01
however, i like to split this into 5 separate columns like
abc 1 a 2 01
any help would be greatly appreciated.
thanks.