Hello,
I have two keyed tables and I want to exclude any rows in table1 that key values match table2 keys
table1
| ©¬ col1 | ©¬ col2 | col3 |
|---|---|---|
| a | b | c |
| d | e | f |
| g | h | i |
table2
| ©¬ col1 | ©¬ col2 | col3 |
|---|---|---|
| a | b | c |
| d | x | y |
| g | h | z |
result
| ©¬ col1 | ©¬ col2 | col3
|
| — | — | — |
|
|
|
|
| d | e | f |
|
|
|
|
Any idea how I can get this?
Thanks