DataTables

  • Thread starter Thread starter bernardpace
  • Start date Start date
B

bernardpace

Hi,

I have two DataTables with same schema(2 columns: ID, value).

These 2 tables are full of rows. Now I require to check if any
data(value) in table 1 already exits in table 2.

Is there a simple way to do this?

Can someone help me out please
Thanks in Advance
 
I have two DataTables with same schema(2 columns: ID, value).

These 2 tables are full of rows. Now I require to check if any
data(value) in table 1 already exits in table 2.

Is there a simple way to do this?

You need a loop for each row in the first table.
Check if the table2.Select(yourCondition) returns some rows, if not there
aren't compatible rows in the second table.
 
Back
Top