473,396 Members | 1,757 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

League Table Access 2003

Hi All

I was wondering if anyone knew how to or has developed an access database that could record exam scores and then copy information onto another form as a league table, showing the highest results

Any help would be greatly appriciated

Many Thanks

Stephen
May 24 '07 #1
3 1880
nico5038
3,080 Expert 2GB
Hi Stephen,

It's a very general question you've posted. I've created many databases, even a questionair, but it's always different depending on the requirements.

As I read your requirement, you need a table for the scores and a query to show the top scorers. When you supply some more information we could help you with the design.

Nic;o)
Jun 2 '07 #2
Hi Nic

Thankyou for your reply, what i would like to do is

There is a list of people and these people do exams, i would like to record each result for each exam taken by a person and for each exam
display the scores in the highest order.

Hopefully it is ok to understand, its quite difficult for me to put in words

Many Thanks

Stephen
Jun 4 '07 #3
nico5038
3,080 Expert 2GB
OK, then I guess you have a table like:
tblStudentExam
StudentID
ExamID
Score
(optionaly a date the exam was taken could be added, etc.)

This table is effectively a relation between a table tblStudent and a table tblExam.

For reporting the Max Sore(s) you can now use a "Group By" query like:
Expand|Select|Wrap|Line Numbers
  1. select ExamID, Max(Score) as MaxOfScore from tblDtudentExam 
  2. Group By ExamID
  3.  
You can construct this query using the graphical query editor. Just select the table, the fields ExamID and Score and press the "E" looking GroupBy button.
The press the datasheet button to see the result.

Nic;o)
Jun 4 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: Mahesh Hardikar | last post by:
Hi , Oracle 8.1.7.0.0 on HP-UX 11.0 I am a newbie as far as PL-SQL is concerned . I have Sybase/MSSQL T-SQL background. We have a report which uses a select statement . This select...
2
by: Richard Williamson | last post by:
Hi all, I have a problem designing the tables for a leasgue table calculating database. The current structure is this (irrelavent bits omitted) tabTeam(TeamID, TeamName) ------ ...
3
by: Ram | last post by:
Hi, I am trying to set up a DB for a race series where a riders best 6 of 10 rides count towards a league position. I have a table of Riders ( say 300 ) I want to use a form to select which...
3
by: kylei | last post by:
Would MS Access be able to run a Fantasy League for about a 100 players while allowing people to make changes via the web? It would be run salary cap style with the rosters locking every Monday....
2
by: edwgib2002 | last post by:
Does anyone have any information related to a scheduling algorithm that can be written in VBA and used in an access database to create balanced team schedules for a league?
6
by: mtgriffiths86 | last post by:
Where do i begin...well I am attempting to build a league management website that will automatically work out league tables, fixtures and results. The first problem that i have is this: To...
2
by: tommurray | last post by:
I’m looking for a little help and guidance on creating a league table from entries in a database, because of other requirements it is not possible to update the entry for the person in the database....
2
by: minus | last post by:
public class Test { public static void main (String arg) { // "012345678910" alignment guide String results = {"AR 4 BR 5", "CR 0 DR 1",...
4
by: minus | last post by:
import java.util.Arrays; import java.util.Collections; public class Test { public static void main (String arg) { // "012345678910" alignment guide String ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.