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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:39:14+00:00 2026-06-06T00:39:14+00:00

I currently have two SQL commands. One retrieves a list of unique IDs from

  • 0

I currently have two SQL commands.

One retrieves a list of unique IDs from a table.

The other iterates over these IDs calling the same stored procedure, which at the moment is merely an insert statement.

So, to give an example (with fake names), at the moment I am calling :

SELECT DISTINCT ID FROM TableOfIDs;

and storing the returned values in a List, and then calling the following stored procedure.

INSERT INTO Table ([Date], [Number], [ID]) VALUES( @CurrDate,
                                                   (SELECT SUM(Number2) 
                                                    FROM Table2 
                          WHERE RowID = @ID
                          AND CurrDate = (SELECT MAX(CurrDate) 
                                    FROM Table2
                                    WHERE RowID = @ID))
                    ,@ID)

So a simplified table looks like so :

Table
Date | Number | ID (FK)

Table2
CurrDate | RowID(FK) | Number2

Both IDs are foreign keys into the TableOfIDs table.

How can I make it so that all of this is run in either one query, or one stored procedure rather than retrieving all of the IDs in one query, and iterating over them calling ~400 stored procedures a night? 🙂

Thanks very much; if any more detail is required please ask and I will fill in the gaps.

They are both foreign keys to the same table.

  • 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-06T00:39:17+00:00Added an answer on June 6, 2026 at 12:39 am
    INSERT  INTO TABLE
            ( [Date]
            , [Number]
            , [ID]
            )
            SELECT  @CurrDate
                  , SUM(Number2)
                  , ID
            FROM    TABLE2
                    JOIN ( SELECT   ID
                                  , MAX(CurrDate) AS MaxDate
                           FROM     Table2
                           GROUP BY ID
                         ) x ON Table2.ID = x.ID
                                AND Table2.CurrDate = x.MaxDate
            GROUP BY Table2.ID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I (currently) have two forms, one that needs to call the other. In other
I currently have two SQL statements that I'd like to combine into one, and
I have two SQL Server 2005 databases, one is for development and the other
I currently have two tables, one is called games, the other called rounds. Here
I have two databases, one is an MS Access file, the other is a
Currently, I have two MySQL tables. First table stores relation between the friend and
I currently have two different models: User and Project . The User model has
I currently have two Backbone models: user and project. I would like to have
I currently have two apps: app1/ app2/ templates/ app1.html app2.html In app1.html, I'm including
I currently have two panels within another large panel. The left panel is for

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.