I have a table with columns Name, EmailId, Process, Status like below.
**Input**
Name EmailId Process Status
apple1 apple@fruits.com process1 Closed
apple2 apple@fruits.com process2 In Progress
apple3 apple@fruits.com process3 Complete
orange1 orange@fruits.com process1 Closed
orange2 orange@fruits.com process2 Closed
oran orange@fruits.com process3 Closed
mango1 mango@fruits.com process1 To Start
Now what I would like to have is the emailId and Status of people whose Status are closed for all the Process – Process1, process2, process 3
**Output**
EmailId Status
orange@fruits.com Closed
Since all the process for orange have been closed I have the above row
Similarly I would like to have all the email ids of the table whose process are closed.
Another way:
or: