How to store arrays in MySQL?
问题 I have two tables in MySQL. Table Person has the following columns: id | name | fruits The fruits column may hold null or an array of strings like (\'apple\', \'orange\', \'banana\'), or (\'strawberry\'), etc. The second table is Table Fruit and has the following three columns: ____________________________ fruit_name | color | price ____________________________ apple | red | 2 ____________________________ orange | orange | 3 ____________________________ ...,... So how should I design the