Viewing post 1 (of 1 total)
create table #temp1 (tabId int primary key, tabPrtId int , tabSlab int)
insert into #temp1 values(1 ,11 ,50)
insert into #temp1 values(2 ,11 ,100)
insert into #temp1 values(3 ,11 ,150)
insert into #temp1 values(4...
August 5, 2010 at 1:11 am
#1202537