christheprogrammer
Programmer
Hiya
I already asked this in SQL Server thread but I realize now that it is better asked here...
I want to do this:
SELECT * INTO [##table1] FROM [dbo].[##table2]
INNER JOIN [##table3]
ON [##table2].field1 =[##table3].field1)
keep in mind that [##table2].field1 and [##table3].field1
have the same column name. It is impossible to create a table having 2 columns with the same name. Is it possible to do this select statement somehow but only with one of the two fields in the result set?
Thanks a bunch,
Chris
Chris Grandin
grandin1@yahoo.com
I already asked this in SQL Server thread but I realize now that it is better asked here...
I want to do this:
SELECT * INTO [##table1] FROM [dbo].[##table2]
INNER JOIN [##table3]
ON [##table2].field1 =[##table3].field1)
keep in mind that [##table2].field1 and [##table3].field1
have the same column name. It is impossible to create a table having 2 columns with the same name. Is it possible to do this select statement somehow but only with one of the two fields in the result set?
Thanks a bunch,
Chris
Chris Grandin
grandin1@yahoo.com