Quando o item A pode ser associado a muitos itens B e o item B pode ser associado a muitos itens A. Isso é chamado de Relação de muitos para muitos
Os dados com esses relacionamentos devem ser armazenados em uma tabela separada e unidos apenas na consulta.
Exemplo
tabela 1
| product_uid | price | amount |
| 1 | 12000 | 3000 |
| 2 | 30000 | 600 |
mesa 2
| tag_uid | tag_value |
| 1 | tag_01 |
| 2 | tag_02 |
| 3 | tag_03 |
| 4 | tag_04 |
Em seguida, usamos uma tabela de junção para relacioná-los
Tabela 3
| entry_uid | product_uid | tag_uid |
| 1 | 1 | 3 |
| 2 | 1 | 4 |
| 3 | 2 | 1 |
| 4 | 2 | 2 |
| 5 | 4 | 2 |
A consulta será (Se você deseja selecionar o item um e a tag)
SELECT t1.*, t2.tag_value
FROM Table1 as t1,
JOIN Table3 as join_table ON t1.product_uid = join_table.product_uid
JOIN Table2 as t2 ON t2.tag_uid = join_table.tag_uid
WHERE t1.product_uid = 1