what i mean by SET type is in the MySQL database the field item_genre in table Items is of "SET type", which means it saves the data in a comma delimited list.
the item_genre field holds the values of the id of the Genre.
tblGenreList
genre_id | genre_name
1 | Action
2 | Drama
3 | Comedy
4 | Horror
5 | War
Items
item_id | item_name | item_genre (SET type)
1 | Men In Black | 2,3,4
2 | 3 Stooges | 1,4
3 | Battleship Potemkin | 5
This way I avoid having a table having repetative data. This way I know which item is of what genre or genres.
I could also sort the item by genre by the respective genre_id that is in the Items.item_genre field.