Changes between Version 8 and Version 9 of AdvancedAppDevelopment
- Timestamp:
- 09/30/25 19:46:49 (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedAppDevelopment
v8 v9 78 78 79 79 {{{#!sql 80 create or replace function ArticleSalesChangeOnPriceChange()81 returns table(82 article Name varchar(128),83 unit Price decimal(10,2),84 price EffectiveDate timestamp,80 create or replace function "IND0_185022".articlesaleschangeonpricechange() 81 returns table( 82 articlename character varying, 83 unitprice numeric, 84 priceeffectivedate timestamp without time zone, 85 85 units_sold bigint, 86 revenue decimal(10,2)87 ) 88 language plpgsql 89 as $ $86 revenue numeric 87 ) 88 language plpgsql 89 as $function$ 90 90 begin 91 91 return query … … 136 136 order by a.art_name, sp.price_eff_date; 137 137 end; 138 $ $;138 $function$; 139 139 }}} 140 140