so lets say i have a table call stuff
stuff has 3 columns, name, date, and picture
lets say there is a row that requires more than one picture
name1-date1-pic1
pic2
pic3
name2-date2-pic1
how do i accomplish this without creating more data? should i create a separate table called photo album or something like this?
table1
name1-data1-album#1
name2-data2-album#2
photoalbum
#1- pic1- pic2 - pic3
#2 - pic1
but even this limits me to how many picture columns are in the photo album table
how can i set it up to where an item can have a variable amount of pics for a single item?
stuff has 3 columns, name, date, and picture
lets say there is a row that requires more than one picture
name1-date1-pic1
pic2
pic3
name2-date2-pic1
how do i accomplish this without creating more data? should i create a separate table called photo album or something like this?
table1
name1-data1-album#1
name2-data2-album#2
photoalbum
#1- pic1- pic2 - pic3
#2 - pic1
but even this limits me to how many picture columns are in the photo album table
how can i set it up to where an item can have a variable amount of pics for a single item?
