I have code I'm trying to write to sum the time in decimal for each user_name:
SELECT [user_name], dbo.fnGetDecimalTime([event_sec]) as 'Decimal_Time',
SUM(dbo.fnGetDecimalTime([event_sec])) as 'Decimal_Time_SUM'
FROM [Charter].[dbo].[ConvoHrs]
group by [user_name], [event_sec]
order by [user_name], [event_sec] desc
But my data comes back looking like this:
Try this
SELECT [user_name], SUM(dbo.fnGetDecimalTime([event_sec])) as 'Decimal_Time_SUM'
FROM [Charter].[dbo].[ConvoHrs]
group by [user_name]
order by [user_name]
You cannot group by a column (Decimal_Time) and then hope that it is ignored when the results are displayed.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
December 6, 2021 at 3:33 pm
Thanks! One thing what if I need to add a field like [Date] (which I may want to do grouping on later)? It wants this added to the 'group by' and 'order by' and goes back to the original issue (?)
December 6, 2021 at 3:35 pm
Thanks! One thing what if I need to add a field like [Date] (which I may want to do grouping on later)? It wants this added to the 'group by' and 'order by' and goes back to the original issue (?)
If you need another column, it can of course be added. But you must either
a) Perform an aggregate function on it (SUM, MAX etc)
b) GROUP BY it
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
December 6, 2021 at 3:41 pm
This does not seem to work, the data returns like before:
SELECT [user_name], [created_at],
SUM(dbo.fnGetDecimalTime([event_sec])) as 'Decimal_Time_SUM'
FROM [Charter].[dbo].[ConvoHrs]
group by [user_name],[created_at]
order by [user_name]
December 6, 2021 at 4:02 pm
You really can't see why?
If User X has 10 rows of data, each with a different 'created-at' value, which one of those values would you wish to return in the single aggregated row which is returned for that user?
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
December 6, 2021 at 4:04 pm
Sorry... I see now and tried MAX and that took care of it... thanks!!
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply