You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
187 B
SQL

/*9. Write a query to display all customers with orders on October 5, 2012.*/
SELECT *
FROM customer a,orders b
WHERE a.customer_id=b.customer_id
AND b.ord_date='2012-10-05';