I'm trying to make a attendance management system for my college project. I'm planning to createaone table for each month. Each table will have
OCT(Roll_no int ,Name varchar, (dates...) bool)
Here dates will be from 1 to 30 and store boolean for present or absent. Is this a good way to do it? Is there a way to dynamically add a column for each day when the data was filled. Also, how can I populate data according to current day.
Edit : I'm planning to make a UI which will have only two options (Present, absent) corresponding to each fetched roll no. So, roll nos. and names are already going to be in the table. I'll just add status (present or absent) corresponding to each row in table for each date.