Is there any way I can do a join between two tables where the resulting table has only the columns of the left table without the need to discriminate all the columns names in the select?
|
|
You can do this:
|
||||||
|
|
|
You mean something like
|
||
|
|
|
|
Select T.* from tbl1 T, tbl2 J |
||
