vote up 0 vote down star

Hi guys,

I have created one temporary table in which corresponding to one fileid which is primary key, I am having 5 rows. I want to get the count as 5. What query do I have to write to get the count corresponding to each fileid?

flag

33% accept rate

3 Answers

vote up 1 vote down
Select id, count(*) from #tmpTable
Group by id
link|flag
vote up 0 vote down
Select Count(Primary_Key_Field) as PrimaryFieldCount, Primary_Key
From TmpTbl
Group by Primary_Key
link|flag
vote up 0 vote down
SELECT
     GroupByField,
     COUNT(*)
FROM 
     #TableName
GROUP BY
    GroupByField
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.