I am building a reservation system, that can store dates of reservation, I am concerning how to store that data.
I want to have a table as such
order_id DateRSVP
---------- ------------
1 1/1-1/3, 1/5, 1/7
should I store it as string and implode explode on ,
order_id DateRSVP
---------- ------------
1 1/1, 1/2, 1/3, 1/5, 1/7
or should i do
order_id DateRSVP
---------- ------------
1 1/1
---------- ------------
order_id DateRSVP
---------- ------------
1 1/2
---------- ------------
order_id DateRSVP
---------- ------------
1 1/3
or is there a more efficiency way to accomplish it