I have multiple properties that are joined with the items table
all of them can be stored as a string, should I have multiple tables for different properties like:
colors table, images table, etc.
or should I make them in one table
colors and images table
and store all of the data in this table
I want to make a good database design, I tried to store all the data in one table but when I search these tables I get mixed data, that need to be filtered.
Is making different tables a good practice?