I have a order master table named order and a fact table named order_sale,I want get the data like following:
database is mssql2000
select t1.orderID,t2.sale_qty from order t1 right outer join sale_qty t2 on t1.orderID=t2.orderID
I make a attribute order and a metric sale'qty,I change the attribute join type into outer join but still not get the sql statement.
Anyone tell me how to do it,thanks!
database is mssql2000
select t1.orderID,t2.sale_qty from order t1 right outer join sale_qty t2 on t1.orderID=t2.orderID
I make a attribute order and a metric sale'qty,I change the attribute join type into outer join but still not get the sql statement.
Anyone tell me how to do it,thanks!