Gebruik de EN trefwoord om het rolnummer op te geven.
SELECT * FROM table1, table2 WHERE table1.rollno = table2.rollno
AND table1.rollno = {$rollno};
Je zou waarschijnlijk het trefwoord JOIN . kunnen gebruiken in plaats daarvan als volgt:
SELECT * FROM table1 NATURAL JOIN table2
WHERE rollno = {$rollno};