473,498 Members | 2,026 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Results in Parallel columns

Hi ,

I need to place the results of two different queries in the same result
table parallel to each other.
So if the result of the first query is

1 12
2 34
3 45

and the second query is

1 34
2 44
3 98

the results should be displayed as

1 12 34
2 34 44
3 45 98

If a union is done for both the queries , we get the results in rows.
How can the above be done.

Thanks in advance,
vivekian

Jun 14 '06 #1
7 1677

vivekian wrote:
Hi ,

I need to place the results of two different queries in the same result
table parallel to each other.
So if the result of the first query is

1 12
2 34
3 45

and the second query is

1 34
2 44
3 98

the results should be displayed as

1 12 34
2 34 44
3 45 98

SELECT qry1.fld1 As FirstField, qry1.fld2 As SecondField, qry2.fild2 as
ThirdField
FROM qry1 INNER JOIN qry2 ON qry1.Field1=qry2.fld1
ORDER BY FirstField

Jun 14 '06 #2
On 14 Jun 2006 14:26:00 -0700, "vivekian" <vi*********@gmail.com>
wrote:
I need to place the results of two different queries in the same result
table parallel to each other.
So if the result of the first query is

1 12
2 34
3 45
select ... into cursor one
and the second query is

1 34
2 44
3 98
select ... into cursor two
the results should be displayed as

1 12 34
2 34 44
3 45 98
select one.*,two.*
from one full outer join two on one.pk=two.pk
with suitable changes for DBMS and table and column names.
If a union is done for both the queries , we get the results in rows.
How can the above be done.


Sincerely,

Gene Wirchenko

Jun 14 '06 #3
CREATE TABLE #a (Idx INT NOT NULL PRIMARY KEY,
Val INT NOT NULL)

CREATE TABLE #b (Idx INT NOT NULL PRIMARY KEY,
Val INT NOT NULL)

INSERT INTO #a (Idx, Val)
SELECT 1, 12
UNION SELECT 2, 34
UNION SELECT 3, 45

INSERT INTO #b (Idx, Val)
SELECT 1, 34
UNION SELECT 2, 44
UNION SELECT 3, 98

SELECT a.Idx, a.Val, b.Val
FROM #a a
INNER JOIN #b b
ON a.Idx = b.Idx
ORDER BY a.Idx

DROP TABLE #a
DROP TABLE #b

"vivekian" <vi*********@gmail.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
Hi ,

I need to place the results of two different queries in the same result
table parallel to each other.
So if the result of the first query is

1 12
2 34
3 45

and the second query is

1 34
2 44
3 98

the results should be displayed as

1 12 34
2 34 44
3 45 98

If a union is done for both the queries , we get the results in rows.
How can the above be done.

Thanks in advance,
vivekian

Jun 14 '06 #4
If I understand the question, my vote goes to Piet's solution. If you have
unmatched rows in either Query, then you'd need something a bit different.

Larry Linson
Microsoft Access MVP

"vivekian" <vi*********@gmail.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com...
Hi ,

I need to place the results of two different queries in the same result
table parallel to each other.
So if the result of the first query is

1 12
2 34
3 45

and the second query is

1 34
2 44
3 98

the results should be displayed as

1 12 34
2 34 44
3 45 98

If a union is done for both the queries , we get the results in rows.
How can the above be done.

Thanks in advance,
vivekian

Jun 15 '06 #5
Hang on a minute... I guess my answer was a bit premature before. What
database are you using to do this? If you're using Oracle, you can use
a full outer join and PL/SQL to do it.

If you're using Access, it's a different kettle of fish, because Access
doesn't support full outer joins.

So end the suspense. What database are you doing this in? (Or just
target your post to the relevant database group). The answer will
largely depend on that, since Oracle, Access, SQL Server, and DB2 all
have their own implementations of the SQL92 standard...

Jun 15 '06 #6

pi********@hotmail.com wrote:
Hang on a minute... I guess my answer was a bit premature before. What
database are you using to do this?


using SQL Server

thanks,
vivekian

Jun 15 '06 #7
>>I need to place the results of two different queries in the same result table parallel to each other. <<

This is not a table; the rows of a table model elements of a set of the
same kind of thing. What you want is a display kludge to show, say,
automobiles and squid as if they were the same kind of things.

Here is your kludge, since people here often gripe that I do not post
the bad code the OP wants:

SELECT *, ROW_NUMBER() OVER(ORDER BY duh) AS lft_nbr
FROM Foo
FULL OUTER JOIN
SELECT *, ROW_NUMBER() OVER(ORDER BY doh) AS rgt_nbr
FROM Bar
ON Foo.lft_nbr = Bar.rgt_nbr;

The right way is handle display issues in the applications and front
ends, not the RDBMS.

Jun 15 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3526
by: Don | last post by:
I am new to Indexing Services, have been researching the MS Site as well as web articles on DevHood, etc. I have set up a seperate catalog ("KnowledgeBase") on Win XP with a number of files. I am...
4
5014
by: Haydnw | last post by:
Hi, I'd like to put a load of database results (several rows for 5 fields) into a two-dimensional array. Now, this may be a really stupid question, but can someone give me a pointer for how to...
11
10448
by: lovecreatesbeauty | last post by:
For example, line L1 and line L2 are two lines in two-dimensional space, the start-points and end-points can be described with following the `point_t' type. The start-points and end-points are:...
7
1462
by: vivekian | last post by:
Hi , I need to place the results of two different queries in the same result table parallel to each other. So if the result of the first query is 1 12 2 34 3 45
74
4484
by: aruna.mysore | last post by:
Hi all, I have a simple definitioin in a C file something like this. main() { char a; ....... int k; }
21
3675
by: bruno_guedesav | last post by:
I've made a function to fetch all results as an array of result- arrays. Getting the result arrays is easy, via mysql_fetch_array, and function itself is quite simple, as follows: function...
4
15273
by: Soren | last post by:
Hi, I want to control some motors using the parallel port.. however, my laptop does not have any parallel ports (very few do). What I do have is a USB->Parallel converter... I thought about...
3
2820
by: Ken Fine | last post by:
This is a question that someone familiar with ASP.NET and ADO.NET DataSets and DataTables should be able to answer fairly easily. The basic question is how I can efficiently match data from one...
2
1087
by: Senjalia | last post by:
Hi, Please help me with SQL code that would do Union of two query results NOT having same columns. For example, first result returns columns A,B,C and D and second result returns columns A,B and...
0
7121
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7162
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
6881
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7375
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4899
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4584
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3078
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1411
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
287
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.