(In Azure SQL Server) I want to architect my database to handle INSERT and SELECT etc where the fields are (to me) comma separated values.
More specifically I don't know best practice to:
SELECT * FROM products WHERE Currency =
A.) USD
b.) USD or CAD
c.) CAD or EUR
d.) EUR
e.) EUR or USD
f.) {Any}
Storing the Currency field in the products table as CSV is surely not efficient for SELECTs but since there are hundreds of currencies neither is an "intermediary table" (i.e. between products and currencies where each possible subset has an id). Thanks in advance