Hey im trying to do something like this; need to delete 2 rows.
$q = "DELETE FROM info WHERE (id = 98 AND uid = 97) AND (id = 97 AND uid = 98)";
$rs = mysql_query($q);
I get empty results but there are 2 rows.
is this possible or must it be 2 queries?