So my question is this.
I would like to Pull data from table 1. Then after pulling that data pull data from table 2 but also show the nulls.
So right now I have this
Select a.*, b.description from table 1 a
LEFT JOIN table 2 on a.id = b.id
WHERE b.description = "hello"
So I would like for it to Always show the information from table and only show the information from table 2 if the where clause is hit
So look something like
Table 1 Table 2
ID1 NULL
ID2 NULL
ID3 hello
ID4 NULL
But all I get back of course is
Table 1 Table 2
ID3 hello
I'm trying to use LINQ to do it but I'm trying to figure it out on SQL first because I know that more.
I don't know if this made any sense but thanks!