CrimsonDiva
Programmer
Hi!
I'm trying to set up subscription information for a mailing list that i'm creating. A user can decide from up to 10 choices of the types of e-mail they'd like to receive.
My question is how should I represent this in SQL Server 2000? I have a user table with information about the user and a user id as the key. I imagine I will create another table with the user_id as the primary key, but that's as far as I've gotten. I'm not sure if I should create a column/field for each of the 10 different email types (as bit fields) OR if I should just have one other column with a delimited set of all the choices the user has access to (i.e. choice1|choice2|choice6|)
Please help!
Diva
I'm trying to set up subscription information for a mailing list that i'm creating. A user can decide from up to 10 choices of the types of e-mail they'd like to receive.
My question is how should I represent this in SQL Server 2000? I have a user table with information about the user and a user id as the key. I imagine I will create another table with the user_id as the primary key, but that's as far as I've gotten. I'm not sure if I should create a column/field for each of the 10 different email types (as bit fields) OR if I should just have one other column with a delimited set of all the choices the user has access to (i.e. choice1|choice2|choice6|)
Please help!
Diva