Good evening.
How can I calculate periods of 6 months (semesters or a two terms years)?
Explaining: There is a spreadsheet, which I will convert to a MySQL DB, that has the following, relevant, columns Course, Begin and Duration. Course is a string field that combined with the info from another table returns the Duration. The Begin field is year-semester (like 2010-2 is two thousand and ten secound semester) that the course was started. Duration is the number of years.
The format
table1
**Course** **Begin**
Graduation 1 2010-1
table2
**Course** **Duration**
Graduation 1 4,5
2010-1 means 2010 first semester and 4,5 (actually 4.5 years - four dot five years) means four and a half years, that gives a final date like 2014-1. The fields format, unfortunately, come from another database which I don't have access to change, I just can import the data.
This is probably simple or extremely simple or not.
[Edit] I hope now is correct. [Edit] This will be imported form a first DB, caculated and imported to another DB.