Viewing 15 posts - 16 through 30 (of 31 total)
not sure, but it is having only emply data in it.!!!
September 17, 2012 at 7:27 am
Try This
🙂
select Id,MIN(a) from (
select a.id, a.a from #MinAmt a ,#MinAmt
union
select a.id, a.b from #MinAmt a ,#MinAmt
union
select a.id, a.c from #MinAmt a ,#MinAmt
) a...
September 13, 2012 at 6:33 am
Thanks , seems to be there is no predifined system procedure for this.
Thank you very much.
July 25, 2012 at 8:40 am
Thanks sneh.
it is working fine....
July 10, 2012 at 6:04 am
Hi to all.
i didnt got any reply . am i missing any information ?
July 10, 2012 at 5:01 am
Thanks jitendra. i will try your solution.
But i am looking for Script Task.
Thanks in advance.:-)
July 9, 2012 at 12:16 pm
Here is the logic which i applyed.
correct me if i am wrong...
select Genre_name, artist_name from #Genre G inner join #music M on m.gid=G.gid
inner join #Artist A on a.mid=M.mid
inner...
July 5, 2012 at 6:32 am
Thanks to all.
good to know that, it can be done using intersect and except.
i am done using Exists operator.
Expecting some more Solutions.:-)
July 4, 2012 at 8:43 am
i implemented the relation between tables like this.
select Genre_name,artist_name from #Genre G inner join #music M on m.gid=G.gid
inner join #Artist A on a.mid=M.mid
inner join #artist_name AM on AM.art_id=A.art_id...
July 4, 2012 at 7:50 am
here is dml for the required tables.
create table #Genre(gid int, Genre_name varchar(100))
insert into #Genre values(521,'classical')
insert into #Genre values(523,'pop')
insert into #Genre values ( 627,'fusion')
Create table #music(gid int,mid varchar(10),Era varchar(20))
insert into #music...
July 4, 2012 at 7:15 am
select replace(replace(@blah,LEFT(@blah,2),''),RIGHT(@blah,2),'')
select left(RIGHT(@blah,len(@blah)-2),len(@blah)-4)
select replace(right(REPLACE(left(@blah,2),'')),2),'')
select SUBSTRING(@blah,3,LEN(@blah)-4)
May 16, 2012 at 8:13 am
hi,
thanks for your help, need some more solutions so that we can get the output which we are looking for.
April 22, 2011 at 3:35 am
hi thanks for replying me within time,
but we are not looking for this result.
but we are looking for out below result as follows
A B C E
A B C F
because
...
April 21, 2011 at 7:13 am
Viewing 15 posts - 16 through 30 (of 31 total)