Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 append rows in 2 tables

Author  Topic 

cwtriguns2002
Constraint Violating Yak Guru

272 Posts

Posted - 2007-10-08 : 05:41:10

how to append rows of 2 tables. Each table consist only 1 row.

sample:
table1
f1 f2 f3

table2
g1 g2 g3


my expected result is:

f1 f2 f3 g1 g2 g3

Note: tables have no relation to each other...

thanks



RON
________________________________________________________________________________________________
"I won't last a day without SQL"




SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2007-10-08 : 05:54:46
CROSS JOIN?



E 12°55'05.25"
N 56°04'39.16"
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2007-10-08 : 06:00:36
Where do you want to show data?

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page
   

- Advertisement -