Changes between Version 8 and Version 9 of AdvancedAppDevelopment


Ignore:
Timestamp:
09/30/25 19:46:49 (2 weeks ago)
Author:
185022
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedAppDevelopment

    v8 v9  
    7878
    7979{{{#!sql
    80 create or replace function ArticleSalesChangeOnPriceChange()
    81 returns table(
    82     articleName varchar(128),
    83     unitPrice decimal(10,2),
    84     priceEffectiveDate timestamp,
     80create or replace function "IND0_185022".articlesaleschangeonpricechange()
     81 returns table(
     82    articlename character varying,
     83    unitprice numeric,
     84    priceeffectivedate timestamp without time zone,
    8585    units_sold bigint,
    86     revenue decimal(10,2)
    87 )
    88 language plpgsql
    89 as $$
     86    revenue numeric
     87)
     88language plpgsql
     89as $function$
    9090begin
    9191return query
     
    136136order by a.art_name, sp.price_eff_date;
    137137end;
    138 $$;
     138$function$;
    139139}}}
    140140