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 8666707
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T17:47:49+00:00 2026-06-12T17:47:49+00:00

i have a table like: create table police( ssn name boss_name salary ); Insert

  • 0

i have a table like:

create table police(
ssn
name
boss_name
salary
);

Insert into police values(1,’A’,’C’,10000);
Insert into police values(2,’B’,’D’,20000);
Insert into police values(3,’C’,’E’,30000);
Insert into police values(4,’D’,’E’,45000);
Insert into police values(5,’E’,NULL,55000);

I want a cursor that returns the total salary for the polices who have same boss. Here result will be:
30000(salary of C)+45000(salary of D)
as they both are under boss E. How I do it? How I find C and D as they are under E in ORACLE pl/sql or anonymous block?

  • 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-12T17:47:51+00:00Added an answer on June 12, 2026 at 5:47 pm

    Try this code:

    set serveroutput on;
    declare
     cboss_name varchar2(30) ;
     csalary number ;  
     CURSOR cur
     is       
      select boss_name,sum(salary)  as salary
      from police 
      where boss_name is not null 
      group by boss_name;
    begin
       open cur;
       fetch cur into cboss_name,csalary;
        dbms_output.put_line('boss_name'||' '||'csalary');
        LOOP
        FETCH cur INTO cboss_name,csalary;
           EXIT WHEN cur%NOTFOUND;
           dbms_output.put_line(cboss_name||'         '||csalary);
       END LOOP;
    
       close cur;  
    end;
    

    Here you can find more information about cursors and loops.

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

Sidebar

Related Questions

I have Created a table like CREATE TABLE [dbo].[tab1]( [Id] [int] NOT NULL, [Name]
i have a table like this : CREATE TABLE [Mytable]( [Name] [varchar](10), [number] [nvarchar](100)
I have a table like this CREATE TABLE values ( id int(10) auto_increment NOT
If I have a table like this: CREATE TABLE sizes ( name ENUM('small', 'medium',
If I have a table like CREATE TABLE [FooTable]( [foo] [varchar](50) NOT NULL, [foo_boo]
Suppose I have a table like: create table { id numeric(5,3), code varchar(10) }
I have a table like this: CREATE TABLE book_info ( book_id VARCHAR(32) not null,
e.g. If I have a table like below:- create table Categories(CategoryId int primary key,
I have a history table like below CREATE TABLE [dbo].[t_PettyCash_History] ( [TableName] [varchar] (500)
I have a table created like this: CREATE TABLE rh857_omf.picture(MeasNr TINYINT UNSIGNED, ExperimentNr TINYINT

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.