this is your solution...
declare @Table as table
(
UniqueRecord int,
Phone int,
[Type] varchar(20),
[Status] varchar(20)
)
insert into @Table
select 101, 5551111,'Tech', 'Closed'
union
select 102, 5552222,'CS', 'Closed'
union
select 103, 5553333,'Support', 'Pended'
union
select 104...