J
JRB
Hello all,
I've run into this issue before, and am just curious as to your opinion as
to how best to handle.
I have these tables:
tblProjects
ProjectID (autonumber)
ProjectDesc (text)
ProjectLeader (number)
tblStage
StageID (autonumber)
StageDesc (text)
The issue I'm facing is this: I need to create a table which shows
allowable Stages for each Project. Is it best to design the table like
this...
tblProject_Stage
ProjectID (number)
StageID (number)
.... or like this....
tblProjectStage
ProjectStageID (autonumber)
ProjectID (number)
StageID (number)
....based on the fact that I will have other tables that feed off of the
above table (Tasks that are related to project stages, etc.) I could either
design the task table then like this...
tblProject_Tasks
TaskID (autonumber)
ProjectStageID (number)
TaskDesc (text)
.... or like this...
tblProject_Tasks
TaskID (autonumber)
ProjectID (number)
StageID (number)
Any help would be GREATLY appreciated!
Janelle
I've run into this issue before, and am just curious as to your opinion as
to how best to handle.
I have these tables:
tblProjects
ProjectID (autonumber)
ProjectDesc (text)
ProjectLeader (number)
tblStage
StageID (autonumber)
StageDesc (text)
The issue I'm facing is this: I need to create a table which shows
allowable Stages for each Project. Is it best to design the table like
this...
tblProject_Stage
ProjectID (number)
StageID (number)
.... or like this....
tblProjectStage
ProjectStageID (autonumber)
ProjectID (number)
StageID (number)
....based on the fact that I will have other tables that feed off of the
above table (Tasks that are related to project stages, etc.) I could either
design the task table then like this...
tblProject_Tasks
TaskID (autonumber)
ProjectStageID (number)
TaskDesc (text)
.... or like this...
tblProject_Tasks
TaskID (autonumber)
ProjectID (number)
StageID (number)
Any help would be GREATLY appreciated!
Janelle