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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T23:51:36+00:00 2026-05-12T23:51:36+00:00

I am working on a stored proc (parent) that calls another stored proc (child).

  • 0

I am working on a stored proc (parent) that calls another stored proc (child). The child proc returns a record set with 1 row every time.

What I need to do is pull the data from the child proc and use it in the parent proc. Using methodology from MSSQL I would assume I could just populate a temp table, but I am not quite sure how to do this.

Any help with this is greatly appreciated.

Here is the current version of my proc.

DELIMITER//

CREATE PROCEDURE CreateTransaction(IN p_TransType tinyint, in p_UserID INT)

BEGIN  

DROP TEMPORARY TABLE IF EXISTS fileData_tmp;

CREATE TEMPORARY TABLE fileData_tmp (t_FilePrefix varchar(5), t_FileSuffix int, t_FileDate varchar(4));

CALL GenerateFileNumber(p_TransType);


END//
DELIMITER;
  • 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-05-12T23:51:37+00:00Added an answer on May 12, 2026 at 11:51 pm

    If you’re trying to return a value, why not use a function instead of a procedure?

    DROP TABLE IF EXISTS Filename;
    CREATE TABLE Filename(
        id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
        name VARCHAR(255) NOT NULL,
        PRIMARY KEY (id)
    );
    
    INSERT INTO Filename(name) VALUES ('AAA'), ('BBB'), ('CCC'), ('DDD'), ('EEE');
    
    DELIMITER //
    DROP FUNCTION IF EXISTS GenerateFileNumber//
    CREATE FUNCTION GenerateFileNumber(p_name VARCHAR(255))
    RETURNS BIGINT
    COMMENT 'Gets the file number associated with the given name'
    BEGIN
        DECLARE v_id BIGINT;
    
        SELECT id INTO v_id FROM Filename WHERE name = p_name;
    
        RETURN v_id;
    END;
    //
    
    DROP PROCEDURE IF EXISTS TestCall//
    CREATE PROCEDURE TestCall(p_name VARCHAR(255))
    COMMENT 'Tests function call within a procedure'
    BEGIN
        SELECT 'Returns: ' || COALESCE(GenerateFileNumber(p_name), 'none') AS msg;
    END;
    //
    
    DELIMITER ;
    

    Here’s how it works:

    mysql> CALL TestCall('CCC');
    +------------+
    | msg        |
    +------------+
    | Returns: 3 |
    +------------+
    1 row in set (0.00 sec)
    
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> CALL TestCall('XXX');
    +---------------+
    | msg           |
    +---------------+
    | Returns: none |
    +---------------+
    1 row in set (0.00 sec)
    
    Query OK, 0 rows affected, 1 warning (0.00 sec)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 237k
  • Answers 237k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You should use Distinct(). Like var design = firoozehDataContext.Designs.Distinct(); May 13, 2026 at 6:32 am
  • Editorial Team
    Editorial Team added an answer Because of trigraphs. These are the supported trigraphs, from the… May 13, 2026 at 6:32 am
  • Editorial Team
    Editorial Team added an answer Yes, you put a '*' in front of something that… May 13, 2026 at 6:32 am

Related Questions

I am working on a product that runs an SQL server which allows some
I am working with SQL Server 2005 and I have trigger on a table
I am working with the SQLMemebershipProvider and using Profiles. I have a custom class
Why is this not working for me? What is wrong with my code below?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.