I have data(result / output) in a table like this:
Project code project name associates time efforts in days
1 Analytics amol,manisha,sayali,pooja (21+17+20+17)=57
I need to calculate the time efforts in days. I have done it for February and I have added each persons days he has worked in that month. I mean I have all days minus absentee of any day of all associates.
So, I need to do this by SQL queries.
I have one table which contains all the associates present with dates.
Like this:
UID username date
So can any one give me a suggestion how I could do this?
asscociatescolumn is a really really BAD design for a relational database. Joining that to the table ofAssociatesnow is a really annoying and painful exercise..... You should learn about the basics of good relational design - especially about how to normalize tables - first normal form says: only put one atomic value into each column! – marc_s Mar 6 '12 at 5:41