Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8182199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T00:46:54+00:00 2026-06-07T00:46:54+00:00

I’m stuck on a the type of trigger needed to for this constraint. I

  • 0

I’m stuck on a the type of trigger needed to for this constraint.

I will have a price and a commission. The price determines the commission amount, < 100 – 4%, < 200 – 5% etc.

My idea.
the database contains a separate table that will hold 4 price values , 101, 201, 401, 601, with their own matching comission %, this will be called PC. When I create a property listing I want to calculate the commission they earn depending on the price entered.

on insert, I need to check the new.price and compare it to the prices in PC. Once new.price is less than the price tuple, I set the price to that commission value

create or replace TRIGGER findCommission BEFORE INSERT OR UPDATE ON HASLISTING
FOR each ROW
BEGIN
IF (:NEW.ASKING_PRICE < 100001) THEN
:NEW.COMMISSION = 6.0;
END IF;
IF (:NEW.ASKING_PRICE < 250001) THEN
:NEW.COMMISSION = 5.5;
END IF;
IF (:NEW.ASKING_PRICE < 1000001) THEN
:NEW.COMMISSION = 5.0;
END IF;
IF (:NEW.ASKING_PRICE > 1000000) THEN
:NEW.COMMISSION = 4.0;
END IF;
END;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T00:46:56+00:00Added an answer on June 7, 2026 at 12:46 am

    I would suggest using a function for calculations like this and then call it in the trigger. That way the commission logic stays seperate and can be changed.

    Also, your commission table description might help.

    create table price_comm(
       max_price number(20),
       comm number(5,2)
    );
    
    
    insert into price_comm (max_price, comm) values (10000, 2.0);
    insert into price_comm (max_price, comm) values (20000, 3.0);
    insert into price_comm (max_price, comm) values (30000, 4.0);
    commit;
    
    create or replace function f_get_comm_percent(
        i_price in number
    ) return number
    as
     o_comm_percent price_comm.comm%type;
    begin
      select comm 
        into o_comm_percent
      from (
          select comm,
                 rank () over (order by max_price desc) rnk
            from price_comm
            where max_price <= i_price
      ) where rnk = 1;      
    
      return o_comm_percent;
    
    end;
    /
    

    –this is also assuming that the ranges do not overlap and if they do, they get the maximum commision 😉

    Now to get the commission values…

    SQL> select f_get_comm_percent(12000) from dual;
    
    F_GET_COMM_PERCENT(12000)
    -------------------------
                            2
    
    SQL> select f_get_comm_percent(45000) from dual;
    
    F_GET_COMM_PERCENT(45000)
    -------------------------
                            4
    

    — and your trigger definition could be as simple as this. Looking at your question, it seems you have the percentage in the table and you need the commission value in your final table.

    create or replace trigger trg_biu_haslisting
    before insert or update of haslisting
    for each row
    referencing new as new and old as old
    begin
      :NEW.commission := :NEW.price*f_get_comm_percent(:NEW.price);
      --any other columns that you need to set
    end;
    /
    

    I haven’t tested the trigger code for syntax errors, please test on your end.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have some data like this: 1 2 3 4 5 9 2 6
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.