I have a simple query in access which displays data from a single table. The query is being executed on a button click. I want to display the Date and Time stamp in the query output everytime the button is clicked.
How can I display Date and Time in the query output?
Thanks in advance
You can include a column, but it will display the date for each row:
In SQL view that would be:
EDIT
Date only with row number:
Note that whatever you choose as ID must be unique and that this could make a query slow.