Computer Science, asked by kim51503854, 4 months ago

write an SQL command
1) Display the customer name and contact number who bought products in the month of April.

Attachments:

Answers

Answered by armacwan
0

Answer: SELECT Cust_Name , Cust_Contact FROM CUSTOMER WHERE Cust_ID IN ( SELECT Cust_ID FROM RECEIPT WHERE Date LIKE "%-04-%" )

Explanation:

Similar questions