Viewing 3 posts - 31 through 33 (of 33 total)
Thanks For The Reply Monster ,
i am new to Sql server.Running The Query
on millions of records is...
April 18, 2013 at 4:03 am
#1607615
Select Name,COUNT(distinct id)
from @table
group by name
having COUNT(distinct id) =3
April 16, 2013 at 12:05 am
#1606700
In SQL SERVER 2008 The Following Are The New Features
-->TVP(Table valued Parameters)
-->grouping sets(advanced to group by clause)
-->new datatypes regarding datetime Are introduced (date,time,datetime2,datetimeoffset...)
-->Merge Statement
April 15, 2013 at 11:13 pm
#1606681