please check this:
SELECT students.name, students.family, section.term, section.group FROM students, section WHERE students.id = section.id AND section.course = '234' AND term = '1' AND group = '54'
and this:
SELECT students.name, students.family, section.term, section.group FROM students INNER JOIN section ON students.id = section.id WHERE section.course = '234' AND term = '1' AND group = '54'
what is better query?
thank you


Sign In
Create Account


Back to top









