Hi everyone,
an issue with union:
if i put two select statements together I do get both the answers I require, however when I execute the code I get a single row for each select statement (I suppose this sould be expected). As there is a good chance I have not explained myself very well, follows is a simple example:
SELECT ColumnA, Count(ColumnB) AS 'Test1', '' AS 'Test2'
FROM DB1
WHERE ColumnB = 7
UNION
SELECT ColumnA, '', Count(ColumnC)
FROM DB1
WHERE ColumnC >1
GROUP BY ColumnA
please note I have written this example without testing, however I do not have an issue with the above the issue comes when the data is displayed:
ColumnA Test1 Test2
A1 2 0
A1 0 1
A2 5 0
A2 0 8
As you can see I get the result grouped but over 2 rows where I require them in a single row e.g.:
ColumnA Test1 Test2
A1 2 1
A2 5 8
Any useful hints would be great.
Thank you
/Nice
an issue with union:
if i put two select statements together I do get both the answers I require, however when I execute the code I get a single row for each select statement (I suppose this sould be expected). As there is a good chance I have not explained myself very well, follows is a simple example:
SELECT ColumnA, Count(ColumnB) AS 'Test1', '' AS 'Test2'
FROM DB1
WHERE ColumnB = 7
UNION
SELECT ColumnA, '', Count(ColumnC)
FROM DB1
WHERE ColumnC >1
GROUP BY ColumnA
please note I have written this example without testing, however I do not have an issue with the above the issue comes when the data is displayed:
ColumnA Test1 Test2
A1 2 0
A1 0 1
A2 5 0
A2 0 8
As you can see I get the result grouped but over 2 rows where I require them in a single row e.g.:
ColumnA Test1 Test2
A1 2 1
A2 5 8
Any useful hints would be great.
Thank you
/Nice