SELECT *
FROM
(Table1 As T LEFT JOIN
Table2 As C ON T.CodeID=C.CodeID) LEFT JOIN
Table3 As U ON T.UserID=U.UserID
WHERE
T.TimeIn >= @Date
AND T.TimeIn < DateAdd("n",1,@Date)
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
TRUSTED BY
ASKER
Enclosing the parameter names with []s works, but I have to manually add the parameters on the dataset.
Thanks