vote up -2 vote down star

Hi,

I tried doing this but it failed.

SELECT table2.ID, table1.* FROM table2
LEFT JOIN table1 ON table1.ID = table2.table1ID

How do you select all columns from a table?

Thank you

flag

Change the question to "How to join all columns from one table" it is a better topic. SELECT tablename.* could easily be misunderstood. – John Leidegren Mar 12 at 6:54

5 Answers

vote up 2 vote down check

What you have is syntactically correct, exactly what did you mean by it failed? Did you get an error message or just not the results you wanted? (BTW it is a bad practice to select *, only return the columns you need. In this case you do not need all the columns as the id field in table1 will have the exact same data as the file din table 2 it is joined to)

link|flag
Thanks HLGEM! Why is it bad to select *? What if I have 20 columns and I need 18 of them? Thanks. – aximili Mar 12 at 22:25
2  
Select * should not ever be used in production servers as it sends more infomation than you need across the network which creates performance problems over time. Further, if you change the structure of the table, select * gives the wrong results, so suddenly your report that is supposed to have ten columns has eleven. And if someone foolishly changed the order of the columns in the table, you may have the wrong data in the wrong column. – HLGEM Jun 17 at 17:08
vote up 0 vote down

Sorry everyone, now that I run it again there is no error.
I'm not sure why I got an error last night, I thought it was because of "table1.*"

HLGEM is right there is no error with the query.

link|flag
vote up 1 vote down
    SELECT t2.ID, t1.* FROM table2 t2
LEFT JOIN table1 t1 ON t1.ID = t2.table1ID

this works on sql 2000+

link|flag
vote up 3 vote down

You had field names conflict as both tables have ID field. You must to

 SELECT table2.ID as t2_id, table1.* FROM table2
LEFT JOIN table1 ON table1.ID = table2.table1ID
link|flag
A field name conflict won't prevent the query from running. – Tomalak Mar 12 at 8:11
It was not said how it failed – Riho Mar 12 at 9:00
vote up 0 vote down

What was the error message? Are you running on SQL Server?

link|flag

Your Answer

Get an OpenID
or

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