Viewing post 1 (of 2 total)
Please try this stored procedure.You can use your table instead of @sourceTbl used in this sample
create procedure sptest as
begin
DECLARE @sourceTbl TABLE (proj varchar(50),Sector varchar(50))
DECLARE @ResultTbl TABLE (proj varchar(50),Sector...
May 5, 2006 at 3:48 am
#636166