X
XP
Using Office 2003 and Windows XP:
The following SQL will create a table with two dates and two times columns,
but how can I specify that the dates are to be MediumDate and the times are
MediumTime in SQL?
CREATE TABLE [tblUserTracking1] (USERNAME VARCHAR NULL,
BOXNAME VARCHAR NULL, DATEIN DATE NULL, TIMEIN DATE NULL,
DATEOUT DATE NULL, TIMEOUT DATE NULL);
CurrentProject.Connection.Execute sSQL
Thanks in advance.
The following SQL will create a table with two dates and two times columns,
but how can I specify that the dates are to be MediumDate and the times are
MediumTime in SQL?
CREATE TABLE [tblUserTracking1] (USERNAME VARCHAR NULL,
BOXNAME VARCHAR NULL, DATEIN DATE NULL, TIMEIN DATE NULL,
DATEOUT DATE NULL, TIMEOUT DATE NULL);
CurrentProject.Connection.Execute sSQL
Thanks in advance.