CBSE Class 12 Informatics Practices
Question 79 of 91
JOINS and SET Operations — Question 15
Back to all questionsSELECT s.name, s.city, c.cust_name, c.city
FROM Salesman s, Customer c
WHERE s.salesman_id = c.salesman_id AND
(s.city = 'Chennai' AND c.city = 'Chennai');