473,750 Members | 2,533 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Want to Group By Union Two Query

Hi there,

I have no idea why the following TSQL does not work.Any Idea? I am
using SQL 2000 Server

CREATE PROCEDURE RptDailySummary 2
@FromTxDate DATETIME,
@ToTxDate DATETIME
AS
BEGIN
SELECT TxDate,TxType,C urrencyName,Sav Balance
FROM
(
(
SELECT dbo.Dateonly(Tx Date) AS
TxDate,dbo.Curr encyName(Curren cyID)AS
CurrencyName,Tx Type,SUM(SavBal ance) AS SavBalance
FROM ActiveLedger
GROUP BY CurrencyID,TxTy pe,dbo.DateOnly (TxDate)
HAVING dbo.DateOnly(Tx Date) BETWEEN
dbo.DateOnly(@F romTxDate) AND dbo.DateOnly(@T oTxDate)
)
UNION
( SELECT dbo.Dateonly(Tx Date) AS
TxDate,dbo.Curr encyName(Curren cyID)AS
CurrencyName,Tx Type,SUM(SavBal ance) AS SavBalance
FROM PassiveLedger
GROUP BY CurrencyID,TxTy pe,dbo.DateOnly (TxDate)
HAVING dbo.DateOnly(Tx Date) BETWEEN
dbo.DateOnly(@F romTxDate) AND dbo.DateOnly(@T oTxDate)
)
)
GROUP BY TxDate,Currency Name,TxType
ORDER BY CurrencyName,Tx Type
END

Jan 30 '07 #1
2 1910
You may wish to try microsoft.publi c.sqlserver.pro gramming

Marc
Jan 30 '07 #2
From what I remember, T-SQL syntax needs a name, alias, for the joined
query, like as Table1:

SELECT TxDate,TxType,C urrencyName,Sav Balance
FROM
(
(
SELECT dbo.Dateonly(Tx Date) AS
TxDate,dbo.Curr encyName(Curren cyID)AS
CurrencyName,Tx Type,SUM(SavBal ance) AS SavBalance
FROM ActiveLedger
GROUP BY CurrencyID,TxTy pe,dbo.DateOnly (TxDate)
HAVING dbo.DateOnly(Tx Date) BETWEEN
dbo.DateOnly(@F romTxDate) AND dbo.DateOnly(@T oTxDate)
)
UNION
( SELECT dbo.Dateonly(Tx Date) AS
TxDate,dbo.Curr encyName(Curren cyID)AS
CurrencyName,Tx Type,SUM(SavBal ance) AS SavBalance
FROM PassiveLedger
GROUP BY CurrencyID,TxTy pe,dbo.DateOnly (TxDate)
HAVING dbo.DateOnly(Tx Date) BETWEEN
dbo.DateOnly(@F romTxDate) AND dbo.DateOnly(@T oTxDate)
)
) AS UnionTable
GROUP BY TxDate,Currency Name,TxType
ORDER BY CurrencyName,Tx Type

"Jonathan Woods" <ye******@gmail .comha scritto nel messaggio
news:11******** *************@a 75g2000cwd.goog legroups.com...
Hi there,

I have no idea why the following TSQL does not work.Any Idea? I am
using SQL 2000 Server

CREATE PROCEDURE RptDailySummary 2
@FromTxDate DATETIME,
@ToTxDate DATETIME
AS
BEGIN
SELECT TxDate,TxType,C urrencyName,Sav Balance
FROM
(
(
SELECT dbo.Dateonly(Tx Date) AS
TxDate,dbo.Curr encyName(Curren cyID)AS
CurrencyName,Tx Type,SUM(SavBal ance) AS SavBalance
FROM ActiveLedger
GROUP BY CurrencyID,TxTy pe,dbo.DateOnly (TxDate)
HAVING dbo.DateOnly(Tx Date) BETWEEN
dbo.DateOnly(@F romTxDate) AND dbo.DateOnly(@T oTxDate)
)
UNION
( SELECT dbo.Dateonly(Tx Date) AS
TxDate,dbo.Curr encyName(Curren cyID)AS
CurrencyName,Tx Type,SUM(SavBal ance) AS SavBalance
FROM PassiveLedger
GROUP BY CurrencyID,TxTy pe,dbo.DateOnly (TxDate)
HAVING dbo.DateOnly(Tx Date) BETWEEN
dbo.DateOnly(@F romTxDate) AND dbo.DateOnly(@T oTxDate)
)
)
GROUP BY TxDate,Currency Name,TxType
ORDER BY CurrencyName,Tx Type
END

Jan 30 '07 #3

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

Similar topics

3
2223
by: mikes | last post by:
I have 2 separate queries, which effectively are the same except they draw data from separate tables. Both tables are (design-wise) identical, only the data is different. for each query, there are 2 tables with a standard LEFT JOIN. One field of the query is calculated, looking for a NULL in one table, and then using a field from the second table in that case. One query looks like this: PARAMETERS Text ( 255 ); SELECT...
1
24810
by: Dámaso Velázquez Álvarez | last post by:
I have: SELECT x, count(x) FROM table1 WHERE ... UNION ALL SELECT x, count(x) FROM table2
1
1400
by: skbhagour | last post by:
hi all i am using given below procedure what i want (i am using sql server2000 with vb.net in window advanceserver2000) 1.i want records between two given date for particular account statement. 2.if record is present in both tables than all the colums of query has value. 3.if not any side than corresponding table columns fill with null and other with value.
4
11654
by: janko.klemensek | last post by:
Can I Group by the Union in one query or must I write two queries for this (one for union and second for group by)?
5
3846
by: wugon.net | last post by:
question: db2 LUW V8 UNION ALL with table function month() have bad query performance Env: db2 LUW V8 + FP14 Problem : We have history data from 2005/01/01 ~ 2007/05/xx in single big table, we try separate this big table into twelve tables and create a view
0
1465
by: RSN | last post by:
I hav a query that uses a union of 16 tables to get some counts and i need to get the end result as a Group by. This is inside a sub-query that has the count(*) ans the attribute for the group-by in the select. i need to get the end result as the count for each of the group displayed as a title based on a criteria on the group attribute. the query is something like this.. but i am not able to get the top most part ie getting to display the...
7
19864
sharijl
by: sharijl | last post by:
I have a SQL query which returns the total amount of issues: SELECT issue,Count(issue) as total FROM mytable Group by issue This works but I need the total of the same catagory in three tables so I assumed a union would work so tried something like this: SELECT issue,Count(issue) as total FROM mytable Group by issue Union SELECT issue,Count(issue) as totalFROM mytable2 Group by issue union
2
2734
by: benhaynes | last post by:
I am writing a query to create a tree menu, it pulls from a table of music "tracks". In this database there are four "sub_genre" fields for each track, and I need to create a list of all used sub_genres and how many tracks are in each. The list will look like this: Acid Jazz (50) Big Beat (1) Breakbeat (75) Chill (27) Dance (12) Drum & Bass/Jungle (12)
3
3062
by: pjewett | last post by:
Hi All, New to the forum and to SQL. I'm running a query to pull sales records for a specific customer that returns several dates (for each transaction). I only need the most recent date from the results however and am having difficulty figuring out how to get this. Can anyone help? Thanks
0
8838
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9583
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9396
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9256
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8263
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6808
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6081
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4716
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3323
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 we have to send another system

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.