I have the following Data Table Data as:
EMPLOYEEID DAYDATE ----------------------------------- 101 01/08/2017 101 02/08/2017 101 04/08/2017 101 06/08/2017 101 07/08/2017 102 01/08/2017 102 03/08/2017 102 06/08/2017
I want to Write a Query to get the following missing Dates between 01/8/2017 to 07/08/2017 Data as :
EMPLOYEEID DAYDATE ----------------------------------- 101 03/08/2017 101 05/08/2017 101 07/08/2017 102 02/08/2017 102 04/08/2017 102 05/08/2017 102 07/08/2017
How to deal with That?!