Gurus,
Pls let me know if and how do I split a numeric column into two separate columns in Oracle SQL.For example I have a 16 digit card number and I would like to split this into two columns with first 6 digits in one column and next 10 digits in next column.
Existing :- 4356233478562314 Column CC
Desired :- 435623 coloumn A 3478562314 column B.
Regards