I am using CRXI and SQL Server 2005 tables.
I have 2 tables: Month and Sales.
I am doing a left-outer join (Month ---> Sales).
This allows me to see all months even when there aren't any sales in the month.
I want to maintain my left outer join when I select against a data element from the right table. In other words, I want to show all months, even when my selection result is null.
Does anyone know how to accomplish this?
Thank you for your time,
TXP007
I have 2 tables: Month and Sales.
I am doing a left-outer join (Month ---> Sales).
This allows me to see all months even when there aren't any sales in the month.
I want to maintain my left outer join when I select against a data element from the right table. In other words, I want to show all months, even when my selection result is null.
Does anyone know how to accomplish this?
Thank you for your time,
TXP007