Unix Technical Forum

Re: HELP WITH RANKING !!!!( please)

This is a discussion on Re: HELP WITH RANKING !!!!( please) within the SQL Server forums, part of the Microsoft SQL Server category; --> Use this logic declare @t table(i int) insert into @t values(100) insert into @t values(200) insert into @t values(300) ...


Go Back   Unix Technical Forum > Database Server Software > Microsoft SQL Server > SQL Server

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-29-2008, 02:31 PM
Madhivanan
 
Posts: n/a
Default Re: HELP WITH RANKING !!!!( please)


Use this logic


declare @t table(i int)
insert into @t values(100)
insert into @t values(200)
insert into @t values(300)
insert into @t values(100)
insert into @t values(400)
insert into @t values(100)
insert into @t values(300)
insert into @t values(600)
insert into @t values(200)
insert into @t values(600)
select i, s*100/Total as percentage from (
select i,count(i) as s ,(select count(i) from @t) as total from @t
group by i) T

Madhivanan

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 12:59 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com