Click here to Skip to main content
15,890,506 members
Home / Discussions / Database
   

Database

 
GeneralRe: Count Problem Pin
Mark J. Miller20-Feb-07 12:23
Mark J. Miller20-Feb-07 12:23 
GeneralRe: Count Problem Pin
ronivars20-Feb-07 12:50
ronivars20-Feb-07 12:50 
GeneralRe: Count Problem Pin
ronivars20-Feb-07 13:21
ronivars20-Feb-07 13:21 
GeneralRe: Count Problem Pin
ronivars20-Feb-07 12:22
ronivars20-Feb-07 12:22 
QuestionCount Query Prob Pin
tadhg8820-Feb-07 6:39
tadhg8820-Feb-07 6:39 
AnswerRe: Count Query Prob Pin
andyharman20-Feb-07 7:05
professionalandyharman20-Feb-07 7:05 
AnswerRe: Count Query Prob Pin
tadhg8820-Feb-07 7:32
tadhg8820-Feb-07 7:32 
GeneralRe: Count Query Prob Pin
andyharman20-Feb-07 8:17
professionalandyharman20-Feb-07 8:17 
Which database are you using? You may be able to get away with:
select ScoutedPersonId,
   count(distinct convert(varchar, MatchId) + '-' + convert(varchar, ScoutId))
from ScotingReport
group by ScoutedPersonId
order by ScoutedPersonId
(which cheats a bit and turns the MatchId and ScoutId into a single string value that can be counted) or
select ScoutedPersonId, Sum(ScoutCount)
from (
  select ScoutedPersonId, MatchId, count(distinct ScoutId) AS ScoutCount
  from ScoutingReport
  group by ScoutedPersonId, MatchId
) A
group by ScoutedPersonId
order by ScoutedPersonId
(which uses an inline view).

Regards
Andy
GeneralRe: Count Query Prob Pin
tadhg8821-Feb-07 0:37
tadhg8821-Feb-07 0:37 
GeneralRe: Count Query Prob Pin
tadhg8822-Feb-07 1:53
tadhg8822-Feb-07 1:53 
QuestionHow to add costum row to combo what linked to DataSource Pin
El'Cachubrey20-Feb-07 3:37
El'Cachubrey20-Feb-07 3:37 
QuestionHow to order Integer field as a string ?? Pin
kindman_nb20-Feb-07 3:22
kindman_nb20-Feb-07 3:22 
AnswerRe: How to order Integer field as a string ?? Pin
Aswanikumarj20-Feb-07 3:45
Aswanikumarj20-Feb-07 3:45 
GeneralRe: How to order Integer field as a string ?? Pin
kindman_nb20-Feb-07 5:05
kindman_nb20-Feb-07 5:05 
AnswerRe: How to order Integer field as a string ?? Pin
andyharman20-Feb-07 3:46
professionalandyharman20-Feb-07 3:46 
GeneralRe: How to order Integer field as a string ?? Pin
kindman_nb20-Feb-07 5:07
kindman_nb20-Feb-07 5:07 
QuestionSQL server does not exists or access denied. Pin
Aswanikumarj20-Feb-07 3:06
Aswanikumarj20-Feb-07 3:06 
AnswerRe: SQL server does not exists or access denied. Pin
Krish - KP20-Feb-07 17:11
Krish - KP20-Feb-07 17:11 
GeneralRe: SQL server does not exists or access denied. Pin
Aswanikumarj28-Feb-07 6:02
Aswanikumarj28-Feb-07 6:02 
QuestionAverage of all columns Pin
Sam Heller20-Feb-07 1:55
Sam Heller20-Feb-07 1:55 
AnswerRe: Average of all columns Pin
andyharman20-Feb-07 3:44
professionalandyharman20-Feb-07 3:44 
GeneralRe: Average of all columns Pin
Sam Heller20-Feb-07 5:09
Sam Heller20-Feb-07 5:09 
AnswerRe: Average of all columns Pin
andyharman20-Feb-07 22:40
professionalandyharman20-Feb-07 22:40 
QuestionSQL Server 2000 Installation problem on Windows server 2003 Pin
Gulfraz Khan20-Feb-07 1:51
Gulfraz Khan20-Feb-07 1:51 
AnswerRe: SQL Server 2000 Installation problem on Windows server 2003 Pin
Smart_Boy13-Mar-07 19:14
Smart_Boy13-Mar-07 19:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.