I need to change the way I am storing information in the DB. Because the query works slow with the old model I had developed.
General problem is following.
1) I have list of courses, and each course has list of tags describing general content of the course. For instance, the course called "Database Management Systems" could have following tags {sql, index, key, relation}.
2) I have professors who have tags also which generally describe what do they teach in their courses . For example, Barton {sql, php, apache,mysql}
I need to find all professors in the DB who match best to the specific selected course. Also I need to sort them by their weight of matching.
Question
The question is how to store this information in the DB and how to process this stored information in order to solve this problem.
This question appeared after I received a lot of negative critiques about my sql query here.
| ||||
|
feedback
|
|
Well, I would start with something like these 5 tables:
and query it something like
That's MS SQL Server syntax...don't know what you're using (but with php, probably not that :)) | |||
|
feedback
|
|
Sounds like you should have the following tables:
For example, you might have a Professor called "Prof. Brown" with a corresponding row in table Now suppose you have a course "SQL and Database Design", and it has subject areas "Database Design", "SQL", "Database Indexes", "Normalisation" and "Query optimisation". You could see which professors are suited to teach the course by issuing
where | ||||
|
feedback
|
|
Here's what I suggest as your schema (primary keys bolded):
Then you can so something like:
This query returns a list of prof IDs, ordered by the number of tag matches they have. | |||
|
feedback
|
|
In the simplest form, I'd suggest having 5 tables:
CourseId - int, PK, identity CourseName - varchar(100)
ContentId - int, PK, identity CourseId - int, FK Type - varchar(25)
ProfessorId - int, PK, identity ProfessorName - varchar(100)
ExpertiseId - int, PK, identity ProfessorId - int, FK ExpertiseType - varchar(25) ExpertiseWeight - int
CourseId ProfessorId Hopefully that is self-explanatory... | |||
|
feedback
|