I am new to SQL Server, but have played around with MS Access a fair bit.
I am currently trying to create an Outer Right Join on a Table and Query in SQL Server. Heres query from Access Query builder below:
Code:
SELECT tblPhone.custID, NotMobile.CustMoreThanMob FROM NotMobile RIGHT JOIN tblPhone ON NotMobile.CustMoreThanMob = tblPhone.c_uid WHERE (((NotMobile.CustMoreThanMob) Is Null))
Leave a comment: