I'm using two slightly different scripts which output about 500 results each, give or take four or five extra with the second script. How can I compare the two scripts so that it shows me the four or five extra results(names) from the second script?
$script_1 = mysql_query("SELECT DISTINCT username_A, username_B FROM table_A, table_B where username_A = username_B");
$script_2 = mysql_query("SELECT DISTINCT username_A FROM table_A");