Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

get rows from 1 table with other table empty mysql

SELECT students.name, students.lastname, ifnull(courses.course_name, '-') as course_name
FROM students
LEFT JOIN courses
ON courses.id_student=students.id_student 
WHERE students.name LIKE '%$search%'
GROUP BY students.id_student 
ORDER BY students.name, students.lastname, courses.course_name
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #rows #table #table #empty #mysql
ADD COMMENT
Topic
Name
2+9 =