I want to retrieve a list of all members and all members boats. The way I'm doing it I get the members info for each boat a member has. So if a member John Smith has 3 boats, John Smith is displayed 3 times. I want the name and info to be displayed once, and empty columns instead of duplicated along with the boats.
SELECT m.memberId, m.fName, m.lName, m.ssn, b.boatId, b.length, bt.type
FROM member AS m
RIGHT JOIN boat AS b
ON m.memberId = b.memberId
INNER JOIN boatType AS bt
ON b.boatTypeId = bt.boatTypeId