Hacker News new | past | comments | ask | show | jobs | submit login

I think they're referring to outer-joined tables.

SELECT a.id, b.name FROM a LEFT JOIN b ON a.id = b.id

If you get a NULL in the name field, you don't know if that's because there's no record in b for that id, or if there is a record in b for that id but it has a NULL name value. Sometimes that difference will be important.




While admittedly this could be seen as a mistake in SQL, you can differentiate by looking at whether b.id is NULL or not.


true, but that's not the point the OP was making, I think :)




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: