DanDarwood2004
Programmer
I am trying to write a query that pulls information from a number of tables which are used as daily logs (with date as their primary key) for the current day. Not all of these tables are updated every day so I need a universal/system date to link them all together. I tired to use a query that returns the system date:
SELECT Now() AS SystemDate;
which works fine by itself but isn't allowed when used within another query as a linked table.
I can see having a date table within the database would solve this but I don't want to do this as it would require updating everyday and I'm sure there is a better and simpler solution.
SELECT Now() AS SystemDate;
which works fine by itself but isn't allowed when used within another query as a linked table.
I can see having a date table within the database would solve this but I don't want to do this as it would require updating everyday and I'm sure there is a better and simpler solution.