0
votes
3answers
25 views
Count average from another MySQL table
I have 2 tables, one is supplier and one is supplier_feedback - how can I calculate the average rating for each supplier? I currently have this:
SELECT s.premium, s.supplier_id, …
0
votes
3answers
90 views
TSQL: Cannot perform an aggregate function AVG on COUNT(*) to find busiest hours of day
Consider a SQL Server table that holds log data. The important parts are:
CREATE TABLE [dbo].[CustomerLog](
[ID] [int] IDENTITY(1,1) NOT NULL,
[CustID] [int] NOT NULL,
…
0
votes
5answers
369 views
T-SQL Time Averaging
I have a table in SQL Server that stores statistics for a piece of hardware, rows in the table represent data for a given second. It contains for example, these columns:
timestamp …
0
votes
3answers
65 views
Calculating average in interchangable range?
I know it's because of n, but n is supposed to be any variable, and left as n, this is what I have:
def average(n):
if n >= 0:
avg = sum((range(1:int(n)))/float(len …
0
votes
1answer
29 views
Table of averages by date for multiple IDs
I have a table full of items that each have a unique ItemID. There is another table with information on tests that are done on these items around once a month (some may have multi …
1
vote
2answers
63 views
Avg of a Sum in one query
I would like to know if I can get the average of a sum in one single SQL SERVER request,
Have tried to do it with the following request but it doesn't work:
SELECT t.client,
…
-5
votes
3answers
187 views
How can I calculate averages using Perl? [closed]
These are the sample values in the text file
a b c avg
12.9 9.9 8 -
13 7 5 -
1.9 5 4 -
4.9 1.2 2 -
How can I find the average of each …
0
votes
2answers
123 views
Use SELECT AVG with parameters “SELECT AVG(@parameter)” SQL!!
I'm working with a table of float values, but I enter the column by parameter
SELECT AVG(@var) AS Aver
FROM ListVal
When I enter the column name (the parameter) I recieve an erro …
2
votes
2answers
322 views
Generic awk script to calculate average on any field through command line argument
Hi,
I want to write a generic awk script that can take as input a file and a field number (in that file) and give me the average value of that field in that file. I would use it s …
1
vote
2answers
408 views
Cumulative sums, moving averages, and SQL “group by” equivalents in R
What's the most efficient way to create a moving average or rolling sum in R? How do you do the rolling function along with a "group by"?
4
votes
4answers
261 views
Average of two angles with wrap around [closed]
Possible Duplicate:
How do you calculate the average of a set of angles?
I have two angles, a=20 degrees and b=350 degrees. The average of those two angles are 185 degrees …
1
vote
7answers
219 views
SQL aggregate functions using MIN and AVG…
How can I omit Zeros in my data?
For example using the MIN function? I would like the Minimum value except a 0...
How can I get the next largest?
MIN(availables.price)
Also i …
2
votes
3answers
96 views
Averaging a set of points on a Google Map into a smaller set
I'm displaying a small Google map on a web page using the Google Maps Static API.
I have a set of 15 co-ordinates, which I'd like to represent as points on the map.
Due to the ma …
1
vote
3answers
174 views
How to average 3 values in Sql Server?
Hi folks,
I have three variables :-
@ScoreA DECIMAL(10,7)
@ScoreB DECIMAL(10,7)
@ScoreC DECIMAL(10,7)
@FinalScore DECIMAL(10, 7)
I wish to get the average of the three scores. …
0
votes
2answers
102 views
How to calculate a monthly average when the month is not finished
Hello! Let's say I have a 12 cells on column A with the sales for each month last year. To calculate a monthly I can do a simple formula like this in A13 =sum(A1:A12)/12. But in co …
