Select from following answers:- SELECT DISTINCT Name FROM Product WHERE ProductModelNo IN (SELECT ProductModelNo FROM ProductModel WHERE Name LIKE 'Lumia%';

- SELECT Name FROM Product AS pp WHERE EXISTS (SELECT * FROM ProductModel AS pm WHERE pp.ProductModelNo = pm.ProductModelNo AND pm.Name LIKE 'Lumia')
- SELECT Name FROM Product WHERE ProductModelNo IN (SELECT ProductModelNo FROM ProductModel WHERE Name LIKE 'Lumia');
- All Above
This statement will retrieve one instance of each product in the temp database, where Ans2 and Ans3 might retrieve more than one instance of each product in the temp database
Show Correct Answer
Asked In: measureup.com |
Alert Moderator