I am working on a system to control monthly payments (similar to a tuition payment system), and I am concerned about standardization. For example:
Table quotas
Id_abonado id_recibo año mes valorcuota pagado
12 1 2016 Enero 100 80
13 1 2016 Enero 100 100
14 2 2016 Enero 100 100
And if I had 500 subscribers, año
and mes
would be repeated 500 times and I doubt that this is correct. I was thinking about creating another table that had only the year and the month to refer but I'm not sure. I hope you can help me.