@mike_bike_kite
Quote:
|
Very poor idea - look up the datetime data type.
|
I know about the datetime data type. The data will be stored as correct data types, but because a user can store as many dates as they want I won't have a way of knowing how many columns are needed to hold the dates for a given user.
Quote:
|
how many billions of records are you planning on storing?
|
I'm not sure how much traffic this site currently gets, so I really don't know how many records will be created.
@dportas
Quote:
|
In your model there is no way to relate dates and times to the users. I don't see why you'd put dates and times in separate tables.
|
The Title table holds the userID key, from there I would join on the other 2 tables based on the titleID and DateID.
How would you store the dates and times if a user adds 5 dates, and each date has 5 times associated with it. This is a scheduling application so that users can add a bunch of dates and add times to those dates selected.