Hello,
I want to make a query which will list all customers who have ordered something on a specific date but who have not paid yet)
This is what I have got so far
SELECT CUSTOMER.*, ORDERS.*
FROM CUSTOMER, ORDERS
WHERE (((CUSTOMER.customerNumber)= 'paid.yes'));
I am unsure of what to do with the WHERE statement because in the CUSTOMER table, I have a 'paid' field which has a yes/no data type.
How can I get my query to work with this?
Any help would be super.
I want to make a query which will list all customers who have ordered something on a specific date but who have not paid yet)
This is what I have got so far
SELECT CUSTOMER.*, ORDERS.*
FROM CUSTOMER, ORDERS
WHERE (((CUSTOMER.customerNumber)= 'paid.yes'));
I am unsure of what to do with the WHERE statement because in the CUSTOMER table, I have a 'paid' field which has a yes/no data type.
How can I get my query to work with this?
Any help would be super.