junicume
2012-10-30 15:01:32 UTC
SELECT ord.ORDER#, cust.LASTNAME, cust.FIRSTNAME
FROM ORDERS ord, CUSTOMERS cust
WHERE ord.SHIPDATE IS NULL
AND ord.CUSTOMER# = cust.CUSTOMER#
ORDER BY ord.ORDERDATE;
but can't get the command WITH a join statement to work. Help, please?