the art_1 and art_2 columns contain common names of the species that were dated
- create a data-derived entity that has columns for
art_1andart_2 - create an extra column
comnon_nameand fill it with the contents ofart_1 - create a Foreign Key join to the Entity taxa_tree_master, on the
common_namecolumn of both - create an extra column
language_idand give it a value of 2 (for Swedish) - create a Foreign Key join to the Entity languages, on the
laungage_idof both
Note
Both art_1 and art_2 contain common names of taxa. When they both have common names, they are for different taxa. However, sometimes art_2 appears to instead be a description or elaboration about the information appearing in art_1 Therefore, we should we make an attempt to break art_1 into two different columns, one for common names of taxa, and one for descriptions and additional information to supplement art_1 Question: what is the best way to approach that?
