172k views
2 votes
List the order number and order date for each order placed by the customer named johnson s department store. (hint: to enter an apostrophe (single quotation mark) within a string of characters, type two single quotation marks.)

User Jan Hommes
by
6.4k points

1 Answer

2 votes

Answer:

Step-by-step explanation:

To obtain the needed detail of order table and order date for each order place by customer, has to be filtered with "John's Department Store"

select ORDER_NUM, ORDER_DATE frome orders as o

inner join customer as c on c.CUSTOMER_NUM=o.CUSTOMER_NUM

where c.CUSTOMER_NAME = "Johnson's Department Store"