How do I get to make this sqsl query work:
SELECT student.LASTNAME,
student.FIRSTNAME,
student.IDNO,
student.YEAR,
parents.P_ADDRESS
FROM student
WHERE P_ADDRESS="Ambagat, Santol, LU"
RIGHT JOIN parents ON student.IDNO = parents.IDNO
I just want to add where statement on the joins. Because the usual example in w3schools doesn't include a where statement. Please help.