I need a way to combine two queries in order to run them in unison for a report that needs to call them as a stored procedure. The delete query is as follows:
PARAMETERS [{?LinkReceiver}] Text ( 255 ), [{?DateTime}] DateTime;
DELETE *
FROM TableOfContents
WHERE ((([TableOfContents].[DateTime])<>[{?DateTime}]));
And the select query is as follows:
SELECT *
FROM TableOfContents;
Thank you in advance!
PARAMETERS [{?LinkReceiver}] Text ( 255 ), [{?DateTime}] DateTime;
DELETE *
FROM TableOfContents
WHERE ((([TableOfContents].[DateTime])<>[{?DateTime}]));
And the select query is as follows:
SELECT *
FROM TableOfContents;
Thank you in advance!