Ok, im still confused. How do you use a SELECT statement in a
query where you have a WHERE looking for a date.
For example, here is my actual query:
SELECT tblpayments.for_auction, tblpayments.txn_type,
tblpayments.paymentdate, tblpayments.payment_id,
tblpayments.mc_gross, tblpayments.mc_fee, tblitems.item_price,
tblitems.item_name, tblcustomers.Cust_First, tblcustomers.Cust_Last
FROM (tblitems INNER JOIN tblpayments ON tblitems.txn_id =
tblpayments.txn_id) LEFT JOIN tblcustomers ON
tblpayments.customer_id = tblcustomers.Cust_ID
where paymentdate = #CreateODBCDate(now())#
AND payment_status = 'Completed'
AND for_auction <> 1
I dont follow how i would put a SELECT GETDATE in that query.
Tony