vote up 3 vote down star
1

I am trying to find the best way to design the database in order to allow the following scenario:

  1. The user is presented with a dropdown list of Universities (for example)
  2. The user selects his/her university from the list if it exists
  3. 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? alt text

alt text

flag

6 Answers

vote up 4 vote down check
CREATE TABLE university
(
  id smallint NOT NULL,
  name text,
  public smallint,
  CONSTRAINT university_pk PRIMARY KEY (id)
);

CREATE TABLE person
(
  id smallint NOT NULL,
  university smallint,
  -- more columns here...
  CONSTRAINT person_pk PRIMARY KEY (id),
  CONSTRAINT person_university_fk FOREIGN KEY (university)
      REFERENCES university (id) MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION
);

public is set to 1 for the Unis in the system, and 0 for user-entered-unis.

link|flag
this is what I thought of, but I wanted to know whether it is actually done this way! – sabbour Jan 2 '09 at 11:44
I'd say it is, as it's simpler than the alternatives. – svinto Jan 2 '09 at 11:47
It needs a garbage collector though, else this scheme might end up having many orphaned entries in university. – David Schmitt Jan 2 '09 at 12:35
Also have to think of when a user entered university becomes a system university. Just change the value.. but don't want duplicates in case an admin isn't looking for already existing entries. – Arthur Thomas Jan 2 '09 at 21:25
Yes, how can this be automated as much as possible? – sabbour Jan 3 '09 at 14:27
show 1 more comment
vote up -1 vote down

This isn't a database design issue. It's a UI issue.

The Drop down list of universities is based on rows in a table. That table must have a new row inserted when the user types in a new University to the text box.

If you want to separate the list you provided from the ones added by users, you can have a column in the University table with origin (or provenance) of the data.

link|flag
Not such a bad idea. I think that I'd use a separate table for user entered data. Use a flag in the original to mark which. Keep a count in the user-entered table of times entered. Periodically, you could have a maintenance task that would take anything entered more than once and move it. – tvanfosson Jan 2 '09 at 12:07
Or if there aren't many entries or you are concerned with bogus entries (University of Okiboji), they could just be scanned by eye and processed manually. – tvanfosson Jan 2 '09 at 12:09
@tvanhfosson: separate table never works out well -- you have endless union queries to merge up the two data sets. One table with status flags is simpler in the long run. – S.Lott Jan 2 '09 at 12:41
vote up 1 vote down

Keep a flag for the rows entered through user input in the same table as you have your other data points. Then you can sort using the flag.

link|flag
vote up -2 vote down

I'm not sure if the question is very clear here.

I've done this quite a few times at work and just select between either the drop down list of a text box. If the data is entered in the text box then I first insert into the database and then use IDENTITY to get the unique identifier of that inserted row for further queries.

INSERT INTO MyTable Name VALUES ('myval'); SELECT @@SCOPE_IDENTITY()

This is against MS SQL 2008 though, I'm not sure if the @@SCOPE_IDENTITY() global exists in other versions of SQL, but I'm sure there's equivalents.

link|flag
but how then can I handle if multiple users enter the same university name? Should I first check if their custom input matches a university in the database? – sabbour Jan 2 '09 at 11:45
Make the university name column unique, that way the query will fail if they enter the same name. The unique property is a SQL feature which you can apply to the column in the database to stop duplicate entries being entered. – Kezzer Jan 2 '09 at 11:52
vote up 1 vote down

One way this was solved in a previous company I worked at:

Create two columns in your table: 1) a nullable id of the system-supplied string (stored in a separate table) 2) the user supplied string

Only one of these is populated. A constraint can enforce this (and additionally that at least one of these columns is populated if appropriate).

It should be noted that the problem we were solving with this was a true "Other:" situation. It was a textual description of an item with some preset defaults. Your situation sounds like an actual entity that isn't in the list, s.t. more than one user might want to input the same university.

link|flag
this might be another question but isn't storing NULL values in the rows a bad thing to do? – sabbour Jan 2 '09 at 11:47
Yes exactly, I want to know how Facebook handles this situation when a user modifies their profile to input Work information or Education information! – sabbour Jan 2 '09 at 11:50
@NULLs in rows: as long as you're expecting them, no – David Schmitt Jan 2 '09 at 12:34
vote up 1 vote down

You could cheat: if you're not worried about the referential integrity of this field (i.e. it's just there to show up in a user's profile and isn't required for strictly enforced business rules), store it as a simple VARCHAR column.

For your dropdown, use a query like:

SELECT DISTINCT(University) FROM Profiles

If you want to filter out typos or one-offs, try:

SELECT University FROM PROFILES
GROUP BY University
HAVING COUNT(University) > 10  -- where 10 is an arbitrary threshold you can tweak

We use this code in one of our databases for storing the trade descriptions of contractor companies; since this is informational only (there's a separate "Category" field for enforcing business rules) it's an acceptable solution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.