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
|
|
Hi, I tried doing this but it failed.
How do you select all columns from a table? Thank you
|
|||
|
|
|
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) |
||||||
|
|
|
Sorry everyone, now that I run it again there is no error. HLGEM is right there is no error with the query. |
||
|
|
|
|
this works on sql 2000+ |
||
|
|
|
|
You had field names conflict as both tables have ID field. You must to
|
||
|
|
What was the error message? Are you running on SQL Server? |
||
|
|