Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pulling Time from the Systems Memory

Status
Not open for further replies.

Qiana

MIS
Jan 4, 2000
2
US
How do I write an SQL code for pulling time directly from the systems memory when I run a macro using Microsoft Access?
 
If you where looking for the current time and, say the contents of the TABLEA table, it would read like:<br>
<br>
select time(),TABLEA.* from tablea;<br>
<br>
This will return every row from TABLEA and append the current time on the end of each row.<br>
<br>
HTH<br>
<br>
C
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top