...
Normalization
August 29, 2024
Database-Management-System
August 29, 2024
Normalization
August 29, 2024
Database-Management-System
August 29, 2024

Database-Management-System

Question 703
What result set is returned from the following SQL query?
SELECT customer_name, telephone FROM customers
WHERE city IN(‘Jaipur’,’Delhi’,’Agra’);
A
The cusomer_name of all customers who are not living IN Jaipur,Delhi OR Agra
B
The customer_name and telephone of all customers
C
The customer_name and telephone of all customers living IN either Jaipur,Delhi OR
Agra
D
The customer_name and telephone of all customers living IN Jaipur,Delhi AND Agra
Question 703 Explanation: 
Only logic here is, when we are using keyword IN there must be OR keyword.
Correct Answer: C
Question 703 Explanation: 
Only logic here is, when we are using keyword IN there must be OR keyword.

Leave a Reply

Your email address will not be published. Required fields are marked *