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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:36:07+00:00 2026-05-13T14:36:07+00:00

Refresh my memory. I can’t recall how to join tuples (a,b) and (c) to

  • 0

Refresh my memory. I can’t recall how to join tuples (a,b) and (c) to produce (a,b)*(c). For example:

n
---
0
1
2

And

site_id     value
----------- -------------
1           a
1           b
2           c

I’d like to end up with:

site_id     value          n
----------- -------------- -- 
1           a              0
1           a              1
1           a              2 
1           b              0
1           b              1
1           b              2
2           c              0
2           c              1
2           c              2

How can I achieve this?

  • 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-13T14:36:08+00:00Added an answer on May 13, 2026 at 2:36 pm

    That’s called a CROSS JOIN, also known as the Cartesian product.

    SELECT *
    FROM Table1
    CROSS JOIN Table2
    

    You can also do it without the JOIN keyword just by using a comma:

    SELECT * FROM Table1, Table2
    

    Here’s full test code you can use to verify that it works:

    CREATE TABLE Table1 (n int NOT NULL);
    INSERT INTO Table1 (n) VALUES
    (0),
    (1),
    (2);
    
    CREATE TABLE Table2 (site_id int NOT NULL, value nvarchar(100) NOT NULL);
    INSERT INTO Table2 (site_id, value) VALUES
    (1, 'a'),
    (1, 'b'),
    (2, 'c');
    
    SELECT Table2.site_id, Table2.value, Table1.n FROM Table1, Table2
    

    Results:

    site_id  value  n
          1      a  0
          1      a  1
          1      a  2
          1      b  0
          1      b  1
          1      b  2
          2      c  0
          2      c  1
          2      c  2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone just help me refresh my mind? How do you specify hex values
I am reading Beginning C# to refresh my memory on C# (background in C++).
Is there a way to reload or refresh a rubygem in memory? As i'm
When a user hits Refresh on their browser, it reloads the page but keeps
How often does Akamai refresh cache? We use Akamai to cache frequently accessed files.
What is the best way to refresh a DataGridView when you update an underlying
I'm finding that hitting the Refresh button on my browser will temporarily screw up
I've set up an AJAX page refresh with setInterval . From time to time,
How should widgets in GWT inform other widgets to refresh themselfs or perform some
I have a system that uses a meta refresh to a logout page, which

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.