on ‎2013 Sep 18 6:23 AM
Request clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm guessing it shows you only the fields you've selected from Account. Try adding the columns from Contact and from Opportunity for example
Select col1.Account col2.Account col1.Contact col1.Opportunity from Account
Join Contact...
Join Opportunity...
Just like in the tutorial I've sent you. They're example is like this:
SELECT Orders.OrderID, Customers.CustomerName, Orders.OrderDate
FROM Orders
INNER JOIN Customers
ON Orders.CustomerID=Customers.CustomerID
Note that they use fields from the joined tables after the word "SELECT" in the select statement.
Let me know if this solves your problem.
Regards,
Bartłomiej.
| User | Count |
|---|---|
| 12 | |
| 9 | |
| 7 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.