Hi, I'm a bit of a database novice, so pardon my naivety here. I have following sql statement:
SELECT DISTINCT dbo.tb_user.familyName,
dbo.user_email.email FROM dbo.tb_user
INNER JOIN dbo.user_email ON (dbo.tb_user.id = dbo.user_email.userID)
This returns records where an email address exists.
What I would like to do is retrieve all the records so I can see which users do and do not have email address/es recorded in the db.
Can this be achieved?
Any hints/help much appreciated.