How to break numbers in SQL? -


Assume that there is a column value:

  235698752   

How can I break it?

  2 3569 8752   

How can this be done in a SQL statement?

Another option, for SQL Server:

  select Do Stuff (Stuff ('235698752', 6, 0, ''), 2,0, '')    

Comments