Sports MIS System
-
- Corporal
- Posts: 7
- Joined: Wed May 30, 2012 10:14 pm
Sports MIS System
I want to create a application for Annual Sports meets of School to manage all data & final reports for houses.
For that I want to know.
What are the database tables and attributes ??
This application must include....
1) Student Name
2) House Name
3) Events
4) Age Category ex: Under 19, Under 17....
5) Score Point for Each Event
6) Score Point for winners Ex: 1st - 10 points , 2nd - 8 points..........
Please help me, Because this is my first application for school project!!!
??????? ???????? ?? ?? ????? ??? ??????? ???? manage ????? ?????? application ???? ?????? Database/ Tables ??? ????? ????? ??????? ????? ??....
???? ?? ??? ????? ??????? ???? ?? ???
??? ??????? ?????? ?????? ??? ?? ???? ??? ???????? ???????? ????? ?????? database tables- attibutes ????....
ex:- Student Table
Student_ID | Student_Name | Student_Gender | Student_House
For that I want to know.
What are the database tables and attributes ??
This application must include....
1) Student Name
2) House Name
3) Events
4) Age Category ex: Under 19, Under 17....
5) Score Point for Each Event
6) Score Point for winners Ex: 1st - 10 points , 2nd - 8 points..........
Please help me, Because this is my first application for school project!!!
??????? ???????? ?? ?? ????? ??? ??????? ???? manage ????? ?????? application ???? ?????? Database/ Tables ??? ????? ????? ??????? ????? ??....
???? ?? ??? ????? ??????? ???? ?? ???
??? ??????? ?????? ?????? ??? ?? ???? ??? ???????? ???????? ????? ?????? database tables- attibutes ????....
ex:- Student Table
Student_ID | Student_Name | Student_Gender | Student_House
Re: Sports MIS System
?????,
Database ???? subject ?? ?????? ???????? ????? ???? ????. ??? ????? ?????????? ????????? ??????? ???? subject ????? ??????. ?????? ?? Subject ?? ?????? ????. Database application ???? ????? ???????? ER diagrams ????? ??????? 1st, 2nd, 3rd order normalisation ???? ?? ????? table structure ?? ??????? ???.
??? application ???? ??? ?? ????? ????? ????? ????? ??????? ???????. ????? ??? ?? ???? application ?? ??? ??? purpose ???? ?????? ???? ?? ??????? ???.
Database ???? subject ?? ?????? ???????? ????? ???? ????. ??? ????? ?????????? ????????? ??????? ???? subject ????? ??????. ?????? ?? Subject ?? ?????? ????. Database application ???? ????? ???????? ER diagrams ????? ??????? 1st, 2nd, 3rd order normalisation ???? ?? ????? table structure ?? ??????? ???.
??? application ???? ??? ?? ????? ????? ????? ????? ??????? ???????. ????? ??? ?? ???? application ?? ??? ??? purpose ???? ?????? ???? ?? ??????? ???.
- ??? ???? ????? ???? ?????? ????? ?????????? ????????? ????????
- ?????? ??? ???, ???? ?????????? ?????? ???????????? ?????????
- ?????? ??? ???, ?? ??????? ???????
- ???? ??????? ????? ?????? ??? ???? ??????
- ????? ??????? ???? ????? ?????? ????????
Re: Sports MIS System
ROBOT.LK ???? ????? ???????? ????? ??????? ??? ???? ???????. ??? ??? ??? project ???? ???? ???? ???? ????? ??????????? ??????? ????? ???????. ? ????? ???????? ????? ?? ??????. ????? ?? ??? design ???? ???????? ??????? ?????????? ????? ??????? ?????? ??? ?????.
-
- Corporal
- Posts: 7
- Joined: Wed May 30, 2012 10:14 pm
Re: Sports MIS System
??? application ?? ?? ????? ?? ????? ?????? ??? ?? ??? ????? ???? ?? ????.Saman wrote:?????,
Database ???? subject ?? ?????? ???????? ????? ???? ????. ??? ????? ?????????? ????????? ??????? ???? subject ????? ??????. ?????? ?? Subject ?? ?????? ????. Database application ???? ????? ???????? ER diagrams ????? ??????? 1st, 2nd, 3rd order normalisation ???? ?? ????? table structure ?? ??????? ???.
??? application ???? ??? ?? ????? ????? ????? ????? ??????? ???????. ????? ??? ?? ???? application ?? ??? ??? purpose ???? ?????? ???? ?? ??????? ???.
?? ?????? ??? ??????? ????, ?? ??? ???? ?????? ???????.
- ??? ???? ????? ???? ?????? ????? ?????????? ????????? ????????
- ?????? ??? ???, ???? ?????????? ?????? ???????????? ?????????
- ?????? ??? ???, ?? ??????? ???????
- ???? ??????? ????? ?????? ??? ???? ??????
- ????? ??????? ???? ????? ?????? ????????
??? ????? ???????? ????? ?????? ???????????? ?????? !
????? ???? ???? ????? ?????? !
????? ??? ?????? ???????????? ?????? !
-
- Corporal
- Posts: 7
- Joined: Wed May 30, 2012 10:14 pm
Re: Sports MIS System
??? ???? ?????? ??????????? ?????????? ??? ??? ??? ?? ??????? !!!SevenZero wrote:ROBOT.LK ???? ????? ???????? ????? ??????? ??? ???? ???????. ??? ??? ??? project ???? ???? ???? ???? ????? ??????????? ??????? ????? ???????. ? ????? ???????? ????? ?? ??????. ????? ?? ??? design ???? ???????? ??????? ?????????? ????? ??????? ?????? ??? ?????.
?? ?????? ????? ???? database tables ??? ????? ???? ?? ????? !
??? ??? ????? ???? tables Design ???????? ????? ???????? !
Re: Sports MIS System
House
Student
Group
Ex:
Student_Group
Ex: 4 students are running on the relay
Event
Ex:
Participant
Position
Ex:
Event_Position
Ex:
Record
I guess all the tables are now 3rd order normalised and you can generate reports using SELECT queries/views.
Code: Select all
| House_ID(PK) | House_Name |
Student
Code: Select all
| Student_ID(PK) | Student_Name | Date_of_Birth | House_ID |
Code: Select all
| Group_ID(PK) | Description |
Code: Select all
| 0001 | 100x4 relay |
Code: Select all
| Group_ID(PK) | Student_ID(PK) |
Code: Select all
| 0001 | 00001 |
| 0001 | 00002 |
| 0001 | 00003 |
| 0001 | 00004 |
Code: Select all
| Event_ID(PK) | Event_Name | Individual_or_Group | Age_Limit |
Code: Select all
| 00001 | Under 17 100m race | 0 | 17 |
Participant
Code: Select all
| Participant_ID | Event_ID | Student_or_Group_ID |
Code: Select all
| Position_ID(PK) | Description | Score |
Code: Select all
| 00001 | 1st | 30 |
| 00002 | 2st | 20 |
| 00003 | 3st | 10 |
| 00004 | Winner | 50 |
Code: Select all
| Event_Position_ID | Event_ID(PK) | Position_ID(PK) |
Code: Select all
| 0001 | 00001 | 00001 |
| 0002 | 00001 | 00002 |
| 0003 | 00001 | 00003 |
| 0004 | 00002 | 00001 |
| 0005 | 00002 | 00002 |
| 0006 | 00002 | 00003 |
| 0007 | 00003 | 00004 |
Record
Code: Select all
| Date | Event_Position_ID | Participant_ID |
-
- Corporal
- Posts: 7
- Joined: Wed May 30, 2012 10:14 pm
Re: Sports MIS System
?? ?? ????? ???????? ??? ????????? ?????... ?? ?????? ????? ??? ???? !!!Saman wrote:HouseCode: Select all
| House_ID(PK) | House_Name |
StudentGroupCode: Select all
| Student_ID(PK) | Student_Name | Date_of_Birth | House_ID |
Ex:Code: Select all
| Group_ID(PK) | Description |
Student_GroupCode: Select all
| 0001 | 100x4 relay |
Ex: 4 students are running on the relayCode: Select all
| Group_ID(PK) | Student_ID(PK) |
EventCode: Select all
| 0001 | 00001 | | 0001 | 00002 | | 0001 | 00003 | | 0001 | 00004 |
Ex:Code: Select all
| Event_ID(PK) | Event_Name | Individual_or_Group | Age_Limit |
Code: Select all
| 00001 | Under 17 100m race | 0 | 17 |
ParticipantPositionCode: Select all
| Participant_ID | Event_ID | Student_or_Group_ID |
Ex:Code: Select all
| Position_ID(PK) | Description | Score |
Event_PositionCode: Select all
| 00001 | 1st | 30 | | 00002 | 2st | 20 | | 00003 | 3st | 10 | | 00004 | Winner | 50 |
Ex:Code: Select all
| Event_Position_ID | Event_ID(PK) | Position_ID(PK) |
Code: Select all
| 0001 | 00001 | 00001 | | 0002 | 00001 | 00002 | | 0003 | 00001 | 00003 | | 0004 | 00002 | 00001 | | 0005 | 00002 | 00002 | | 0006 | 00002 | 00003 | | 0007 | 00003 | 00004 |
RecordI guess all the tables are now 3rd order normalised and you can generate reports using SELECT queries/views.Code: Select all
| Date | Event_Position_ID | Participant_ID |
?? ??? ???? ???? ?????? ?
?????
1) 13 ?? ??? , 15 ?? ??? , 17 ?? ??? , 19 ?? ??? , 21 ?? ??? ??? ??? ??? tables ?? ???? ??? ?
2) 1st Place – 10 points , 2nd Place – 8 points , 3rd Place – 6 points , 4th Place – 4 points, 5th Place -2 Points, 6th Place – 1 Point ???? ??? events ????? ? ? ????p?? ?? ????? ????? ??? ????? ??.
?? ? ? ????????? ????? ????????? ?? points ???????? ???? …
….. ????? ??? 1, 2,3 ????? ???????? !!
???? ??? !
3) ?? ????? ?? application ??? ?????a Tables ?
4) Student_Group ??????? relay ??? ????? ???? ??? ??? ?
5) Event Table ??? Individual_or_Group ??? ???? records ?? ?????? ?????? ?
?????? ???? ???? ?????? ???? ???????..
Re: Sports MIS System
1. ????. ??? ?? Event table ?????? ?????. ??? ???? ????? ?????? ????? ??????.
2. ???. meet ?? ??? ???? total ?? ??????? ???????
3. ??? application ?? ?????? ????? ?? ??? ??? add ??????
4. ???. ?????? ??? ?? team ??, ?? ???? team ??, cricket/football ??? teams ???? ???? ???????
5. 0 - Individual. 1 - Group
??? ????? ????? try ???? ?????? ???? ???? ?????? ??? ??? ??? support ?????? ????.
2. ???. meet ?? ??? ???? total ?? ??????? ???????
3. ??? application ?? ?????? ????? ?? ??? ??? add ??????
4. ???. ?????? ??? ?? team ??, ?? ???? team ??, cricket/football ??? teams ???? ???? ???????
5. 0 - Individual. 1 - Group
ROBOT.LK.org ???????? ???? ??? ??? ?????????? ???? ???? ?????? ???? ???????..
??? ????? ????? try ???? ?????? ???? ???? ?????? ??? ??? ??? support ?????? ????.