I am trying to find the best way to design the database in order to allow the following scenario:
- The user is presented with a dropdown list of Universities (for example)
- The user selects his/her university from the list if it exists
- If the university does not exist, he should enter his own university in a text box (sort of like Other: [ ])
how should I design the database to handle such situation given that I might want to sort using the university ID for example (probably only for the built in universities and not the ones entered by users)
thanks!
I just want to make it somehow to how Facebook handles this situation. If the user selects his Education (by actually typing in the combobox which is not my concern) and choosing one of the returned values, what would Facebook do?
In my guess, it would insert the UserID and the EducationID in a many-to-many table. Now what if the user is entering is not in the database at all? It is still stored in his profile, but where?


