Hello to every one!
I have 3 tables
tbl_1, tbl_2, tbl_3.
The first table tbl_1 always has much more items that tbl_2 and tbl_3.
My issue is that I want to remove all tbl_1 items that are on tbl_2 and the result should be a new table tbl_3.
Example:
tbl_1 ={"1", "2", "3", "4", "5"};
tbl_2 ={"1", "5"};
The result should be:
tbl_3 ={"2", "3", "4"};
I have 3 tables
tbl_1, tbl_2, tbl_3.
The first table tbl_1 always has much more items that tbl_2 and tbl_3.
My issue is that I want to remove all tbl_1 items that are on tbl_2 and the result should be a new table tbl_3.
Example:
tbl_1 ={"1", "2", "3", "4", "5"};
tbl_2 ={"1", "5"};
The result should be:
tbl_3 ={"2", "3", "4"};
Comment