Hi Guys,
can anyone tell me why i can not pull all the data from two tables please see below:
SELECT Bsa.Nameline1, Bsa.Accountnumber, dbo_Accounts.AccountNumber
FROM
Bsa RIGHT JOIN dbo_Accounts ON Bsa.Accountnumber = dbo_Accounts.AccountNumber;
SELECT Bsa.Nameline1, Bsa.Accountnumber, dbo_Accounts.AccountNumber
FROM
Bsa LEFT JOIN dbo_Accounts ON Bsa.Accountnumber = dbo_Accounts.AccountNumber;
i'm querying a sql server and a table in access how ever when i join them by account number i can only pull data from one of the tables. Please advice
-jaime
can anyone tell me why i can not pull all the data from two tables please see below:
SELECT Bsa.Nameline1, Bsa.Accountnumber, dbo_Accounts.AccountNumber
FROM
Bsa RIGHT JOIN dbo_Accounts ON Bsa.Accountnumber = dbo_Accounts.AccountNumber;
SELECT Bsa.Nameline1, Bsa.Accountnumber, dbo_Accounts.AccountNumber
FROM
Bsa LEFT JOIN dbo_Accounts ON Bsa.Accountnumber = dbo_Accounts.AccountNumber;
i'm querying a sql server and a table in access how ever when i join them by account number i can only pull data from one of the tables. Please advice
-jaime