I am creating a quiz maker in my web application. The database consists of the following tables:

  • QUIZ Table: QuizID, Title, Description
  • UserQuiz Table: UserQuizID, QuizID, DateTimeComplete, Score, Username

Now, I want to develop a chart the shows the title of quiz with the number of users who took each one of these quizzes, but I don't know how. I am trying to get a good query for this but I don't know how.

I am using SqlDataSource for accessing the data in the database.

Please help me.

link|improve this question

35% accept rate
In SQL? In a particular ORM framework? How are you accessing the data? – Rup Nov 9 '11 at 11:49
I am using .NET Framework 4.0 (ASP.NET webforms) and Visual Studio 2010 – user976711 Nov 9 '11 at 11:51
feedback

2 Answers

up vote 2 down vote accepted

In SQL this would be something like

SELECT  Q.QuizID, Q.Title, count(uq.*) as Users
  FROM  UserQuiz UQ
  JOIN  Quiz Q ON Q.QuizID = UQ.QuizID
GROUP BY Q.QuizID, Q.Title

or without the table aliases Q and UQ this would be

SELECT  Quiz.QuizID, Title, count(*) as Users
  FROM  UserQuiz
  JOIN  Quiz ON Quiz.QuizID = UserQuiz.QuizID
GROUP BY Quiz.QuizID, Title

using the full table names to distinguish between the two columns called QuizID.

link|improve this answer
Could you please simplify your query? I did not understand it especially the letters Q, UQ, uq.* – user976711 Nov 9 '11 at 11:59
They're alias table names: FROM UserQuiz UQ means use UQ as an alias for UserQuiz and likewise Q for Quiz. You need aliases to distinguish between the two columns called because you have a column called QuizID in each table. – Rup Nov 9 '11 at 12:03
Thanks. I really appreciate it. it works well now. – user976711 Nov 9 '11 at 12:27
feedback

How about trying something like this

SELECT Title, count(UserQuizID) as usercount
FROM quiz a
JOIN userquiz b on a.quizid = b.quizid
GROUP BY Title

Title would be your XValueMember and usercount YValueMember for the series.

link|improve this answer
I tried to execute this query in SQLServer Management Studio, but I got an error. I don't know why – user976711 Nov 9 '11 at 12:01
What error ? don't have db to test on now – V4Vendetta Nov 9 '11 at 12:04
@Rup Indeed should be .. my bad – V4Vendetta Nov 9 '11 at 12:07
feedback

Your Answer

 
or
required, but never shown

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