Hello,
I need to do a filtered query by date. The problem is that dates that do not exist in the table need to be returned by the query, having all other fields as Nulls.
SELECT Data, Servico
FROM controle_equipe
WHERE ((Data >= #4/1/2016#) And (Data <= #5/2/2016#));
The big jump is to return all the dates of the selection criteria, even though they are not contained in the team_control table. I've tried using IIF, CASE, but without success