hi (most probably to r937 !!)
just a quick question...
currently im using tables:
user (user_id,username,password,pic_id,qNum)
question(q_id,q_text,q_type)
users_ans(user_id,q_id,a_text)
images(pic_id, path).
i want to add the option of allocating a sound file to a user and that the user has a string associated with the sound file. I want to keep the table structure as 'normalised' as possible ....
what would be my best way of implementing this...
i thought...
user(user_id,username,password,pic_id,qNum,sound_id,s_answer)
sound(sound_id, sound_path)
but then thought maybe the user table is then holding too much information.... so maybe it should go in the users_answers table:
users_ans(user_id,q_id,a_text,sound_id,sound_text)
sound(sound_id, sound_path)
??
thanks
just a quick question...
currently im using tables:
user (user_id,username,password,pic_id,qNum)
question(q_id,q_text,q_type)
users_ans(user_id,q_id,a_text)
images(pic_id, path).
i want to add the option of allocating a sound file to a user and that the user has a string associated with the sound file. I want to keep the table structure as 'normalised' as possible ....
what would be my best way of implementing this...
i thought...
user(user_id,username,password,pic_id,qNum,sound_id,s_answer)
sound(sound_id, sound_path)
but then thought maybe the user table is then holding too much information.... so maybe it should go in the users_answers table:
users_ans(user_id,q_id,a_text,sound_id,sound_text)
sound(sound_id, sound_path)
??
thanks