[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.6

Postgresql triggers

Asked by calinutz in PostgreSQL Database

Tags: postgresql, trigger

I have a table containing salesmen, structure follows:

CREATE TABLE agenti
(
  id bigserial NOT NULL,
  agent character(7),
  nume character varying(50),
  nrreg character varying(50),
  cnp character varying(50),
  superior character(7),
  tip character(2),
  gest character(1),
  CONSTRAINT pk PRIMARY KEY (id)
)

I also have a table containing information about the money that will be given to the salesman if he sells an amount of merchandise. The table has the following structure:

CREATE TABLE comisioane
(
  id bigserial NOT NULL,
  agent character(7) NOT NULL,
  nume character varying(100),
  "admin" character(3) NOT NULL,
  nivel smallint DEFAULT 0,
  comis1 numeric(18,2) DEFAULT 0,
  comis2 numeric(18,2) DEFAULT 0,
  dela integer DEFAULT 0,
  panala integer DEFAULT 0,
  CONSTRAINT idx PRIMARY KEY (id)
)

So when an external application inserts a record in the "agenti" table, the trigger must insert a number of records in the "comisioane" table.
Expl:
After the insert on agenti:
insert into agenti (agent,nume,nrreg,cnp,superior,tip,gest) values ('A001103','Some salesmans name','xxxxx','yyyy','A000000','PF','A')

the trigger must do the following actions:

foreach (select admin from administrators) as theAdmin do
begin
      insert into comisioane ('A001103','Some salesmans name',theAdmin,1,0,0,1,49)
      insert into comisioane ('A001103','Some salesmans name',theAdmin,2,0,0,50,99)
      insert into comisioane ('A001103','Some salesmans name',theAdmin,3,0,0,100,149)
      insert into comisioane ('A001103','Some salesmans name',theAdmin,4,0,0,150,199)
      insert into comisioane ('A001103','Some salesmans name',theAdmin,5,0,0,200,249)
      ...
      insert into comisioane ('A001103','Some salesmans name',theAdmin,20,0,0,800,849)
end;


I am new with triggers so I need some help with this.
Thank you
[+][-]08/23/07 09:52 AM, ID: 19755932Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/23/07 09:53 AM, ID: 19755941Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/24/07 08:39 AM, ID: 19763108Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: PostgreSQL Database
Tags: postgresql, trigger
Sign Up Now!
Solution Provided By: Ghitza
Participating Experts: 2
Solution Grade: A
 
[+][-]08/24/07 10:40 PM, ID: 19766894Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 / EE_QW_2_20070628