jmetz
09-02-02, 18:45
| I've got a question that hopefully won't sound too stupid. I've got a class that I teach that I want to track student attendance. The current table attendance has three attributes: ssn (a foreign key from the student table), classdate (the date of the class) and didattend (a boolean value). I designed it this way because it didn't seem very efficient to create a day1 day2 day3... day 48 series of columns. Eventually I want to be able to create a web page that allows me to add a new class date and enter in whether the student attended the class. This value, in turn, will be used to calculate an attendance score to be added in with the rest of the grade. So, the question is, am I doing this right? I appear to be a bit stuck as to what to do next. Thanks for any help. :) |