Suppose I have a table that contains some type of record, such as cooking instructions, such as "Fold the melted chocolate into the egg whites"
. The table contains a unique ID field and row.
I want to create another table for recipes (each with a unique identifier and name), each of which will be a sequence of consecutive instructions (some instructions will be used for several / many recipes).
What is the best way to structure my recipe table to match a unique recipe identifier in a sequence of sequential instructions (which identifiers are not sequential)?
source share