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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:40:05+00:00 2026-06-12T15:40:05+00:00

I have the following SQL which works great at this stage: INSERT INTO recEntrantStatus

  • 0

I have the following SQL which works great at this stage:

  INSERT INTO recEntrantStatus (entrantId, roundId, judgeId, notified, voted, enterNextRound)
  SELECT entrantId, (@round + 1), judgeId, 0, 0, 0
  FROM recEntrantStatus
  WHERE roundId = @round
  AND voted = 1
  AND enterNextround = 1

This code checks for all rows where enterNextRound is true, and then creates a new row for each of them.

However, I now need to expand this so that:

  1. Check a second table (tblJudges) for all judges and get an array of all the judges Id’s (Id)

  2. Do the same as in the above example except now creating each of the above rows for each of the judges / judges Id’s obtained from step 1.

Any help / suggestions would as always be greatly appreciated.

Thanks!

  • 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-12T15:40:06+00:00Added an answer on June 12, 2026 at 3:40 pm

    If I’m understanding you correctly, this may be helpful:

    INSERT INTO recEntrantStatus (entrantId, roundId, judgeId, notified, voted, enterNextRound)
    SELECT r.entrantId, (@round + 1), j.judgeId /*Now getting tblJudges Id*/, 0, 0, 0
    FROM recEntrantStatus r
        -- Get all of the judges
        CROSS JOIN (SELECT DISTINCT Id AS judgeId FROM tblJudges) AS j
    WHERE r.roundId = @round
        AND r.voted = 1 -- Is this based on a judge or an entrant status?
        AND r.enterNextround = 1
    

    We’re getting the same thing as before, only multiplied by the amount of judges, if you will (and using individual judge IDs).

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

Sidebar

Related Questions

I have the following insert statement which works fine on one system running SQL
I have the following which works in SQL Query Analyzer . select oh.* from
I have the following code which works fine to format text from an SQL
I have following sql syntax. This works fine but I was wondering if there
I have the following Query which works great! The only thing is that I
I have the following function in my iPhone project which works great...unless the query
Hi all i have the following merge sql script which works fine for a
I have the following sql statement, which works perfect and since I'm transferring everything
I Have the following SQL Case statement which works perfectly as long as the
I have the following SQL statement which has a very bad performance: SELECT frmInstLastModifiedDate

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.