Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display of two sets of Data grouped in SQL statement 2

Status
Not open for further replies.

thiagarr

Technical User
Oct 20, 2006
86
US
Hi,

I have used SQL command object (Add Command in DB expert) get some numbers grouped on a column. I have two such sets of data which I want to display in the report, one group below the other. (use CR XI and Oracle 9i)

I can display one of the two group of results in the details section properly. If I place the data in other sections, I can see only one of row of data (even when I increase the height of the filed.

I have issues displaying the second set also here in the det. If I create the data in a subreport, I am sure this will work. When I add the second set of data here, the group headings start repeating here and the report runs into number of pages. (My original report has only 5 groups and 6 groups of data to be displayed (a total of 11 lines to be seen in the report)

I tried adding a second detail line and it did not get any better.

Is there any other way I can / should do this?

If I get the numbers without grouping, I should be able to display them in the details section, suppress the section and display only the group data and repeat this for the second section. I can also create two subreports and use them in the main report. Are these the only way to go? I already have all the data / query, etc and want to see if I can keep all this in a single report.

Thank you.
 
I think it would help if you showed the content of the command in the thread.

-LB
 
I think you should post example data and the expected output.

Seems to me you would simply insert a group in Crystal and place the data in the group header, but it's hard to know when people prefer to chat about data rather than give examples.

-k
 
LB / K,

Thank you for your responses.

Sample code is as follows:

Code:
	SELECT  B.REGION , COUNT(A.USER_ID) AS NUMBER_OF_USERS
	FROM USER A, LOGIN B, REGION C
	WHERE A.USER_ID = B.ID                            AND
	C.REGION = B.REGION								AND
	A.CUSTOMERTYPE <> 'FTN'                                AND
	(A.DATE_CREATED BETWEEN to_date('01-JAN-2006','DD-MM-YYYY') AND (LAST_DAY(ADD_MONTHS(trunc(sysdate),-1))))
	)
	GROUP BY B.REGION

Basically, the other SQL command is very similar to the above code (at least as far as grouping is considered). Then I want to display the results of this grouped data one below the other.

Sample result will be something like the following:

First group heading:

AP 1000
Europe 5000
Canada 20000
USA 70000

Second group heading:

Shipped Orders 500
Cancelled Orders 100
Backorders 150


Hope this gives a better insight into my query.

Thank you.
 
Not sure why you wouldn't just post what you're using in it's entirety...

Anyway, try using the UNION ALL, as in:

SELECT B.REGION , COUNT(A.USER_ID) AS NUMBER_OF_USERS
FROM USER A, LOGIN B, REGION C
WHERE A.USER_ID = B.ID AND
C.REGION = B.REGION AND
A.CUSTOMERTYPE <> 'FTN' AND
(A.DATE_CREATED BETWEEN to_date('01-JAN-2006','DD-MM-YYYY') AND (LAST_DAY(ADD_MONTHS(trunc(sysdate),-1))))
)
GROUP BY B.REGION
UNION ALL
... the other query here...

Note that you need the same datatypes in the same place in each query, and you may want to hardcode an identifier column in, such as:

SELECT 'Query1' MySQL, B.REGION , COUNT(A.USER_ID) AS NUMBER_OF_USERS
...
UNION ALL
SELECT 'Query2' MySQL, B.REGION , COUNT(A.USER_ID) AS NUMBER_OF_USERS

Note that you can hardcode in values in either query if you don't have the same columns.

-k
-k
 
As you originally mentioned, you could use the second query in a subreport placed in the report footer.

-LB
 
LB,

Thank you.

I was under pressure to get the report finished and so I used the subreport option.

K,

I understand your frustrations on people like me posting cryptic questions and expect people like you to provide the perfect code to work the first time and my apologies for such behaviour on my part. I am sure you also understand that sometimes, it becomes tricky for people to post the code (though in a generalized form)due to data security / privacy, etc of the individual organizations.

Also, most of our reports are based on request from users who sometimes tell us what they want and many times, it is difficult to start from scratch due to time contraints and need to try and find a solution pronto.

I am not trying to justify what I did but definitely I really appreciate the prompt help provided by the group here. In future, I will try to be as detailed as possible to make the job easy for all of us.

Thank you and I really appreciate the help.
 
You'll find that a UNION ALL is faster to write, and much faster to execute than a subreport option.

You seemed to have plenty of time to discuss why you don't want to post an example, examples have nothing to do with security breaches.

-k
 
K,

Thank you. I will try the UNION ALL option on Monday.



Thanks and regards,

Chandra
 
K,

I just tried the UNION ALL and works really well. Thank you for the suggestions.

But I have a small issue here. Now, Sample SQL command output result is something like the following:

AP 1000
Europe 5000
Canada 20000
USA 70000
Shipped Orders 500
Cancelled Orders 100
Backorders 150

As per my previous post, these are two different categories and I need to introduce a heading in between the two sets (as follows - reproduced from the previous post here)

Sample result will be something like the following:

First group heading:

AP 1000
Europe 5000
Canada 20000
USA 70000

Second group heading:

Shipped Orders 500
Cancelled Orders 100
Backorders 150

First group heading, which can go in the page header and it is not an issue. Any ideas how I can introudce a second heading in between the two sets of data within the details section?

Any ideas would be appreciated.

Thank you.
 
If you add a field into both sides of the union query like:

'Country' as type //first half of union query

'Orders' as type //second half

Then you can insert a group on type.

-LB
 
LB / K,

You guys Rock.

I tried number 1 as type before posting the request - maybe that required some text type there and needed to be enclosed in ''.

In any case, thank you very much for LB and K in this post.

:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top