[thelist] SQL Issues with NULL Values in Column

RUST Randal RRust at COVANSYS.com
Thu Jun 3 09:45:55 CDT 2004


Ken Schaefer said:

> Instead of putting the join in the WHERE clause (which is 
> deprecated), you should use an explicit JOIN. You want a LEFT 
> OUTER JOIN.

How about this?

SELECT a.artistName, l.labelName, b.performanceDate, b.performanceTitle,
b.venue, b.city, b.performanceState, b.country, b.comments
FROM ( boots_bootlegs b
LEFT  JOIN boots_artists a ON a.artistID = b.artistID )
LEFT  JOIN boots_labels l ON b.labelID = l.labelID
WHERE b.bootlegID =  '1'

At least it works:)

----------
Randal Rust
Covansys Corp.
Columbus, OH


More information about the thelist mailing list