S
Steven
I have the following SQL query on a database and would
like to restrict data from a given date. ie. I would like
to insert >#31/05/2004# into the statement below.
SELECT tblEnquirer1.*, tblEnquiryType1.EnquiryType
FROM tblEnquirer1 INNER JOIN tblEnquiryType1 ON
tblEnquiryType1.EnquiryTypeID=tblEnquirer1.EnquiryTypeID;
How could I do this? thanks
like to restrict data from a given date. ie. I would like
to insert >#31/05/2004# into the statement below.
SELECT tblEnquirer1.*, tblEnquiryType1.EnquiryType
FROM tblEnquirer1 INNER JOIN tblEnquiryType1 ON
tblEnquiryType1.EnquiryTypeID=tblEnquirer1.EnquiryTypeID;
How could I do this? thanks