Consider the following relation.
Table: Customers
| C_id | C_name | C_age | C_Country |
| 1 | John | 31 | USA |
| 2 | Ram | 25 | India |
| 3 | Sam | 26 | UK |
| 4 | Balaji | 25 | India |
| 5 | Doe | 28 | UAE |
What is the output for the given SQL Query?
Query:
Select C_name
From Customers
Where C_country NOT IN('India', 'USA);
1
C_name
Sam
Doe
2
C_name
John
Ram
Balaji
3
C_name
Ram
Balaji
4
C_name
John