I'm busy developing an application where users can search within multiple table, now I'm not sure if I'm doing it the correct way.
My sample code looks as follows
        SELECT
   s.name,
   s.surname,
   s.id_nr,
   s.student_nr,
   s.createdate,
   s.enddate
  FROM
   Student AS s,
   Student_Results AS sr
  WHERE
   sr.innovation = "A"
  AND
   s.name = "Test"
Is it the correct way as I do above or should I rather use left joins etc?