to expand on sunita's post... and I'm guessing you want to look at this per person.Declare @t table ( Name varchar(10), Score decimal(9,4))Insert Into @t Select 'John', 90Insert Into @t Select 'John', 31Insert Into @t Select 'John', 4Insert Into @t Select 'John', 49Insert Into @t Select 'Rick', 30Insert Into @t Select 'Rick', 40Insert Into @t Select 'Rick', 51Insert Into @t Select 'Tom', 8Insert Into @t Select 'Tom', 72Select *, Score_Avg = Avg(Score) Over (Partition By Name), Score_Min = Min(Score) Over (Partition By Name), Score_Max = Max(Score) Over (Partition By Name), Score_Stdv = convert(decimal(9,4),Stdev(Score) Over (Partition By Name))From @t
Corey
I Has Returned!!