开发者

PHP SQL: Matching corresponding Data between 2 tables, without Filtering out Data in 1st Table

开发者 https://www.devze.com 2022-12-30 20:37 出处:网络
I have 2 tabl开发者_开发技巧es. For simplicities sake \'u\' has the following columns userid divisionid

I have 2 tabl开发者_开发技巧es. For simplicities sake 'u' has the following columns

userid

divisionid

'd' has the following:

divisionid

name

I did not create this table, otherwise I would not have this problem. u.DIVISION can be NULL. d.DIVISION cannot.

Running the following creates the appropriate data, but it also filters out every single userid that has NULL for it's divisionid. Is there anyway to still show all the userid's regardless of their divisionid and if the divisionid is not null, to then display the name of the division?

"SELECT userid, d.NAME

FROM u,d

WHERE u.divisionid = d.divisionid

ORDER BY userid"


Use an outer join:

SELECT userid, d.NAME
FROM u
LEFT OUTER JOIN division d
ON u.divisionid = d.divisionid
ORDER BY userid


Using the Oracle or implied join syntax implies an INNER JOIN. An inner join eliminates records that don't meet the criteria.

An explicit join using the JOIN clause allows you to specify the type of join.

A LEFT OUTER JOIN keeps all rows in the first table, regardless if there are matching rows in the second table.

SELECT userid, d.NAME
FROM u
LEFT OUTER JOIN division d
ON d.divisionid = u.divisionid
ORDER BY userid
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号