i want to ask for a query:
SELECT *
FROM order_details INNER JOIN orders ON order_details.id_order=orders.id_order
WHERE commitment_date <> "";
SELECT *
FROM order_details INNER JOIN orders ON order_details.id_order=orders.id_order
WHERE commitment_date IS NOT NULL -----------------------------------------------------------------
Be nice. It's only doing what you tell it to do.
mikewolf@tst-us.com
I'm not real sure what you are trying to do. I don't use access forms (I use asp). Does this help?
Case 5
stLinkCriteria = "orders.commitment_date = IS NULL"
Case 6
stLinkCriteria = "order_details.invoice_date IS NULL"
Case 7
stLinkCriteria = "order_details.payment_date IS NULL"
You may need to say ....
order_details.payment_date IS NULL OR order_details.payment_date = '' -----------------------------------------------------------------
Be nice. It's only doing what you tell it to do.
mikewolf@tst-us.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.