Comparing Rows for equality
I have 2 data tables with the same column format, but different numbers of rows. Some of the column types are strings and others are integers.
I want to write a script that goes through table_1 a row at a time and see if there is an identical row in table_2 (based on the column elements in the row).
Do I have to compare for equality column element by element, or is there a quick way to compare the ...