I have two tables.One table contain the values
+---------+
Users
---------+
A
B
C
D
E
F
+----------+
And in another table I am having
+--------+
Active
+--------+
C
D
G
H
I
`+--------+
From the two table I need to get the Users only those who are not in the Active.For this the expected result is
+------+
Result
+------+
A
B
E
F
+-------+