Viewing 15 posts - 46 through 60 (of 66 total)
Got it right 7,7,8,41,14,80
but thought 7,7,8,8,14,80
but that was`t in ans 😛
May 30, 2013 at 3:15 am
Thanx for the question..
i did not go for the catch 1+ 😎
May 30, 2013 at 2:49 am
select '1' as num1, '' as num2
tricky part but 1+
May 28, 2013 at 4:22 am
create table #table (Depot_Id int , Depot_Name varchar(10))
insert into #table
Select '1','A' union
Select '2' ,'B' union
Select '3', 'C'
Select * FRom
(
select Depot_Id , Depot_Name From #table
)V...
May 27, 2013 at 4:22 am
Viewing 15 posts - 46 through 60 (of 66 total)