I have a table with 2 columns A and B. Column A is unique and B will contain multiple entries of column A.
Example
Column A Column B
10 10
11 10
12 13
Without using a subselect how can I find entries in B that are not in A as above(13)?
I dont what to use a subselect as my table has over a million rows and subselect is too slow.
Example
Column A Column B
10 10
11 10
12 13
Without using a subselect how can I find entries in B that are not in A as above(13)?
I dont what to use a subselect as my table has over a million rows and subselect is too slow.