Jump to content

SQL Problem


sseeley

Recommended Posts

I am hoping somone can help me.  I am trying to run a single query (in Crystal Reports) and get two results back, one for a Book A, and the other for Book B.  I am struggling to get this data back?

 

SELECT tblfees.feereceived AS "Book A", tblfees.dateadded FROM tblfees

JOIN tblfeecategory ON

tblfees.fkcategory = tblfeecategory.pkfeecategoryid

WHERE

tblfeecategory.ccnac = '111111'

AND tblfees.feedeleted = 0

UNION

SELECT tblfees.feereceived AS "Book B", tblfees.dateadded FROM tblfees

JOIN tblfeecategory ON

tblfees.fkcategory = tblfeecategory.pkfeecategoryid

WHERE

tblfeecategory.ccnac = '111112'

AND tblfees.feedeleted = 0

 

Can anyone make any suggestions on how I can get this to work correctly?  I am looking for a list of fees for Book A, and a list of fees for Book B

 

Many thanks in advance.

 

Stuart

Link to comment
https://forums.phpfreaks.com/topic/186787-sql-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.