J
JP
I have a Database with two tables..... (tbl.Main) includes fld.observation_ID(Pk,autonumber), fld.Site_ID (unique identifier for the site.) and a bunch of other fields such as date, observer name etc.... The other table (tbl.Ground_Cover_Type) also has the fld.Site_ID and 15 ground cover names, such as rock, gravel, sand etc as field names, each with a value as Long
I am trying to convert my tbl.ground cover into another table that is more uniform with proper database design. The table I am trying to convert to is named (tbl.Ground_Cover_Characteristics) which has the fields GCT_ID(PK,Autonumber), Site_FK as text (linked One-Many with Site_ID in tbl.Main), fld.LCD_Type_FK as Long, and fld.LCD_Value as Long.
The reason behind the LCD_Type_FK is long is because I have changed the field names to numbers (1 to 15) in tbl.Ground_Cover_Type) and I created another table (tbl.Ground_Cover_Types) with fld.ID (PK, Autonumber), fld.GCT_ID as long and GCT_Name as Text
Any assistance would be greatly appreciated.
JP
I am trying to convert my tbl.ground cover into another table that is more uniform with proper database design. The table I am trying to convert to is named (tbl.Ground_Cover_Characteristics) which has the fields GCT_ID(PK,Autonumber), Site_FK as text (linked One-Many with Site_ID in tbl.Main), fld.LCD_Type_FK as Long, and fld.LCD_Value as Long.
The reason behind the LCD_Type_FK is long is because I have changed the field names to numbers (1 to 15) in tbl.Ground_Cover_Type) and I created another table (tbl.Ground_Cover_Types) with fld.ID (PK, Autonumber), fld.GCT_ID as long and GCT_Name as Text
Any assistance would be greatly appreciated.
JP