select o.customerid, c.customername, o.orderdate
from orders as o, customers as c
where o.orderdate='1997-08-26';
Using the sample northwind db, I can't quite figure out what is wrong? I have used the format of the date that is used in the sample table.
I am trying to extract the ID and name of anyone that placed an order on the 26th.