T-SQL doesn't have arrays, but you could represent it as a table
Here's a looping routine:
declare @s varchar(1000); set @s='124890';
declare @t table(i int)
declare @i int; set @i=0
while @i<len(@s) begin
set @i=@i+1;
insert @t(i) values(convert(int,substring(@s,@i,1)))
end
select * from @t
Here's a direct set-based version, but it relies on having an numbers set:
select convert(int,substring('124890',i,1)) as i from (
select 1 as i union select 2 union select 3 union select 4 union select 5 union select 6
) j
you could also use my SQL range function to do it like this:
select convert(int,substring('124890',n,1)) as i from dbo.Range(1,len('124890'),1)