Results 1 to 3 of 3
  1. #1
    grahamee is offline Novice
    Windows Vista Access 2007
    Join Date
    Jun 2010
    Posts
    1

    Design Question

    Hey - I'm new to Access. I am using it to maintain registration for a sports team. I run 4 seasons throughout the year and I want to keep track of which athletes participate in which season.



    I am creating a table for contact information. Should I create separate columns for all the seasons (F09, W09, Sp10, Su10, etc)? Is there a more streamline way to do this?

    Thanks for the help!

  2. #2
    ConneXionLost's Avatar
    ConneXionLost is offline Simulacrum
    Windows XP Access 2003
    Join Date
    Jan 2010
    Location
    Victoria, Canada
    Posts
    291
    Ultimately, it depends on what you want to do with the information, but if you're also doing this to learn about databases, then you'll want to Normalize your data.

    Consider a seperate table "tblSeasonPlayed":

    SeasonPlayedID (PK)
    ContactID
    Season

    With data something like this:

    Code:
    SeasonPlayedID	ContactID	Season
    0	3	W09
    1	6	Su10
    2	2	F09
    3	8	Su10
    4	2	Su10
    Cheers,

  3. #3
    TheShabz is offline Court Jester
    Windows XP Access 2003
    Join Date
    Feb 2010
    Posts
    1,368
    If an athlete can participate in multiple seasons, you'll want 3 tables.

    One for the athlete information
    One for season information
    a third (the one by conneXion) to facilitate a many-to-many relationship between the previous two tables.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Design help
    By jacko311 in forum Database Design
    Replies: 0
    Last Post: 11-12-2009, 05:57 AM
  2. DB Design
    By Merkava in forum Database Design
    Replies: 2
    Last Post: 11-10-2009, 05:51 PM
  3. DB design question
    By dlburkins in forum Database Design
    Replies: 2
    Last Post: 08-28-2009, 07:06 PM
  4. Design Question
    By bdriscoll in forum Database Design
    Replies: 3
    Last Post: 05-03-2009, 08:57 AM
  5. Design help
    By marix in forum Database Design
    Replies: 1
    Last Post: 04-18-2007, 07:54 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums