I have two tables. One is students and another is studentPerformance
students table contains
id, name and email_id
studentPerformance table contains id, student_id, marks
My question is, how I can delete all the students from students table who doesn't have any record in studentPerformance table?
I did Google but didn't land any proper place.
Thanks.