vote up 2 vote down star
1

see above...

flag

The question should be reformatted. Where's Rich B? – devinb Mar 12 at 13:12
he's busy stitching on his latest Strunk & White badge. – StingyJack Mar 13 at 12:08

4 Answers

vote up 4 vote down check
select  *
from    Table1
        inner join
        Table2
        on Table1.ColumnName = Table2.ColumnName

Simple really.

link|flag
With someone who is obviously new, is it a good idea to encourage SELECT * ? – StingyJack Mar 12 at 12:14
1  
What else can you say without any hint of the schema? – Garry Shutler Mar 12 at 12:37
I'd suggest "ColumnName" instead of Column, since Column is a keyword. Not that it matters in real SQL, just for example code. – devinb Mar 12 at 13:10
Done. Thought I may as well. – Garry Shutler Mar 12 at 13:29
vote up 0 vote down

And for completeness (depending on your DBMS) you could use "USING":

SELECT
    ...
FROM
    table_a
INNER JOIN
    table_b
USING
    (common_column);
link|flag
vote up 8 vote down

Use an Alias for the table names is the shortest.

SELECT a.*, b.*
FROM table1 as 'a'
  INNER JOIN table2 as 'b'
    ON a.col1 = b.col1

You can also specify the full table names.

SELECT table1.*, table2.*
FROM table1
  INNER JOIN table2 
    ON table1.col1 = table2.col1
link|flag
vote up 5 vote down

What you are asking is called NATURAL JOIN in relational terminology. Some database servers support this clause. I would prefer to manually specify the join expression even if the provider supports such a clause like:

SELECT .... FROM Table1 JOIN Table2 ON Table1.JoinCol = Table2.JoinCol ...
link|flag
As an addition to your point, I always specify the table or alias for the table so anyone looking will know exactly where the column comes from. It makes refactoring / maintenance much easier later on. – StingyJack Mar 12 at 12:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.