如何在 ASP.NET 图表中显示测验标题以及每个测验中的用户数量?
我正在我的网络应用程序中创建一个测验制作器。该数据库由以下表格组成:
- QUIZ 表:QuizID、标题、描述
- UserQuiz 表:UserQuizID、QuizID、DateTimeComplete、分数、用户名
现在,我想开发一个图表,显示测验的标题以及参加每个测验的用户数量其中一项测验,但我不知道如何进行。我正在尝试对此进行良好的查询,但我不知道如何进行。
我正在使用 SqlDataSource 来访问数据库中的数据。
请帮我。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 SQL 中,这可能类似于
或没有表别名
Q
和UQ
,这将使用完整的表名称来区分称为 QuizID 的两列。
In SQL this would be something like
or without the table aliases
Q
andUQ
this would beusing the full table names to distinguish between the two columns called QuizID.
尝试像这样的标题如何?该
标题将是该系列的
XValueMember
和 usercountYValueMember
。How about trying something like this
Title would be your
XValueMember
and usercountYValueMember
for the series.