Is there any way to list the dates on which user didn't submit the report?
In my application Users are submitting report everyday. I want to list out on which dates user didn't submit the report. Is there a way I can get this using mysql?
I can do like this: Getting records on which user submitted the dates, and process them to get non-submitted dates.
But it effects the performance,
Here is my schema:
TableName : Reports
Fields: id, date, user_id
Please suggest me the solution, How can I do this to improve the performance.
Thanks in advance.