Is this possible in sql server 2005?
Posted
by chandru_cp
on Stack Overflow
See other posts from Stack Overflow
or by chandru_cp
Published on 2010-05-12T04:33:19Z
Indexed on
2010/05/12
4:34 UTC
Read the original article
Hit count: 128
sql-server-2005
|select
This is my queries
select ClientName,ClientMobNo from Clients
select DriverName,DriverMobNo from Drivers
It gives me two result tables... But i want to combine both the result tables into a single table... I tried union
and union all
it doesn't give me what i want....
Note: There is no relationship between the two tables...... There may be 200 clients and 100 drivers...
© Stack Overflow or respective owner