I would like to compare data from two tables with same columns. What I think is I can use match operator (~) between the tables in each row of those tables, however, If the table size is big I am getting timeout issues.
For example: This is the table I have:
tab1:([] col1:1 2 3; col2: a
bc) tab2:([] col1:1 3 5; col2:
ad
b)
tab1~tab2 on each row taking timeout if the data is huge
Tried each row comparision