emp1 | |
Id | Name |
1 | Amit |
2 | Punita |
emp2 | |
Id | Name |
1 | Punita |
2 | Anand |
MINUS
operator, which returns distinct rows from the first SELECT statement that aren't present in the results of the second SELECT statement.emp1 | |
Id | Name |
1 | Amit |
2 | Punita |
emp2 | |
Id | Name |
1 | Punita |
2 | Anand |
SELECT name from emp1
will produce:SELECT name from emp2
will produce:MINUS
operator:SELECT name from emp1 minus SELECT name from emp2;
is:The output of the SQL query SELECT name FROM emp1 MINUS SELECT name FROM emp2 is amit.
Additional Context:
Correct Answer: (2) amit.
On a relation named Loan of a bank: