Hi, This must be a very common scenario for a lot of situations but i cant seem to find a simple solution for it.
I have two tables with item data and status text and then a join table with just the primary keys from these two tables.
Table1 (PK1, Item, item_desc, Item_location, Item_Properties, .....)
Table2 (PK2, StatusText)
JoinTable (PK1, PK2)
I have a form where users can add new item and at this point, i want to show them theavilable status and on selecting the correct status, a new row should be inserted into JoinTable with PK1 of new item and PK2 of status selected.. What the best way of achieving this?
I have two tables with item data and status text and then a join table with just the primary keys from these two tables.
Table1 (PK1, Item, item_desc, Item_location, Item_Properties, .....)
Table2 (PK2, StatusText)
JoinTable (PK1, PK2)
I have a form where users can add new item and at this point, i want to show them theavilable status and on selecting the correct status, a new row should be inserted into JoinTable with PK1 of new item and PK2 of status selected.. What the best way of achieving this?