How to see all business names?
Table 1
Business.ID
Business.Name
Table 2
Comment.ID
Comment.ReferenceID
Comment.Comment
Left outer join to Business.ID <-> Comment.ReferenceID
Now, if I list all Business.Name, I will see all Business names.
For the most part, every Business.Name will have a Comment.Comment. However, I need to see all of the Business.Name listings that dont' have a Comment.Comment. How can I do this?
Table 1
Business.ID
Business.Name
Table 2
Comment.ID
Comment.ReferenceID
Comment.Comment
Left outer join to Business.ID <-> Comment.ReferenceID
Now, if I list all Business.Name, I will see all Business names.
For the most part, every Business.Name will have a Comment.Comment. However, I need to see all of the Business.Name listings that dont' have a Comment.Comment. How can I do this?