There's a table named summary_table which compares two tables and checks if those two table's columns, constraints and data are same or not. One of the table being checked(table1) is the first version and another(table2) is the second. The summary table has columns like columns_status(checks if the columns of both tables are same or not), data_status(checks if the data in both tables are same or not) and constraints_status(checks if the constraints of both tables are same or not) which shows PASS or FAIL. There are multiple tables(1000+) in the summary_table. How can i test each of them?
This is how the summary_table looks like:
TABLE1 TABLE1 COLUMN_STATUS DATA_STATUS CONSTRAINTS_STATUS
--------------------------------------------------------------------------
CUST1 CUST1 PASS PASS PASS
SUPP1 SUPP1 PASS FAIL PASS
EDIT: I've got a table which consists of multiple rows. Each row has two table names which are already compared with status columns showing if it has passed or failed. I want to test each rows using the status column.