Difference between revisions of "SH.PROFITS (view)"

From dbscript Online Help
Jump to: navigation, search
 
Line 27: Line 27:
 
   AND c.promo_id = s.promo_id
 
   AND c.promo_id = s.promo_id
 
</pre>
 
</pre>
 
=== References ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
| '''Dependency Type
 
| '''Object Type
 
| '''Referenced Object
 
 
|- valign="top"
 
| Select
 
| Table
 
| [[SH.COSTS_(table)|SH.COSTS]]
 
 
|}
 

Latest revision as of 10:36, 27 August 2011

wikibot[edit]

View SH.PROFITS

Source[edit]

CREATE OR REPLACE VIEW SH.PROFITS AS 
SELECT
        s.channel_id,
        s.cust_id,
        s.prod_id,
        s.promo_id,
        s.time_id,
        c.unit_cost,
        c.unit_price,
        s.amount_sold,
        s.quantity_sold,
        c.unit_cost * s.quantity_sold TOTAL_COST
 FROM   costs c, sales s
 WHERE c.prod_id = s.prod_id
   AND c.time_id = s.time_id
   AND c.channel_id = s.channel_id
   AND c.promo_id = s.promo_id