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

  • Home
  • SEARCH
  • 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 1093829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T23:53:00+00:00 2026-05-16T23:53:00+00:00

It seems like there should be a query for this, but I can’t think

  • 0

It seems like there should be a query for this, but I can’t think of how to do it.

I’ve got a table with a composite primary key consisting of two fields I’d like to populate with data,

I can do an insert into from one table to fill up half the keys, but I want to fill up the other half with a set of constants (0, 3, 5, 6, 9) etc…

so the end result would look like this

+--------------+
|AwesomeTable  |
+--------------+
| Id1   | Id2  |
| 1     | 0    |
| 1     | 3    |
| 1     | 5    |
| 1     | 6    |
| 1     | 9    | 
| 2     | 0    |
| 2     | 3    |
| ...   | ...  |
+--------------+   

I’ve got as far as insert into awesometable (id1, id2) select id1, [need something here] from table1 [need something else here]

  • 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-16T23:53:01+00:00Added an answer on May 16, 2026 at 11:53 pm

    I’ve got a table with 2 primary keys

    No, you don’t. A table can only have one primary key. You probably mean a composite primary key.

    I believe you want this:

    INSERT
    INTO    awesometable (id1, id2)
    SELECT  t1.id1, q.id2
    FROM    table1 t1
    CROSS JOIN
            (
            SELECT  0 AS id2
            UNION ALL
            SELECT  3
            UNION ALL
            SELECT  5
            UNION ALL
            SELECT  6
            UNION ALL
            SELECT  9
            ) q
    

    , or in Oracle:

    INSERT
    INTO    awesometable (id1, id2)
    SELECT  t1.id1, q.id2
    FROM    table1 t1
    CROSS JOIN
            (
            SELECT  0 AS id2
            FROM    dual
            UNION ALL
            SELECT  3
            FROM    dual
            UNION ALL
            SELECT  5
            FROM    dual
            UNION ALL
            SELECT  6
            FROM    dual
            UNION ALL
            SELECT  9
            FROM    dual
            ) q
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It seems like there should be something shorter than this: private string LoadFromFile(string path)
It seems like there should be a simpler way than: import string s =
Seems like a simple enough question but I can't seem to find the answer.
There should be a simple Linq query for what I'm trying to accomplish, but
It seems like there is a lot of overhead involved in rapidly opening and
Is there some easy way to pad Strings in Java? Seems like something that
Is there something like the Python descriptor protocol implemented in other languages? It seems
For iPhone game development, seems there are very like functions using CALayer and UIView,
It seems like more and more OS X apps these days are doing all
Seems like a simple problem: I have an SVN repo inside our firewall. I

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.