I'm trying to run a query that selects values โโfrom a table using the WHERE clause, the query returns only rows in which all conditions have values, hoe do I return values โโthat are also null?
Language Table Students Table
ID Language ID Student LanguageID
1 English 1 Joe
2 Spanish 2 Mike 1
Running a request, for example
Select student.ID , Student.Student , Language.language
FROM
Students, Language
WHERE
student.LanguageID = Language.id
The query returns only one row for a student microphone. I would like to return all students, even if the language parameter is zero.
source
share