The avg tag has no wiki summary.
0
votes
1answer
19 views
TSQL - calcuate AVG for currency rates over complete year
I have a table with ECB exchange rates for which I want to calculate the average rate for each year.
Let me explain with this image:
As you can see the AVGRate in this example takes the AVG for ...
0
votes
0answers
19 views
How do I get an AVG for a row?
I want to find the average of the numeric columns for each row, so if I select col_id '3', it will return the average of col1, col2, col3,col4,col5. for col_id 3. I know I can use the AVG() function ...
0
votes
1answer
40 views
SQL Server 2008 avg of top data from other columns and unique column data
Forgive me as I'm sure there's some simple group by or sub query that I'm missing but I can see to solve the following and need some help.
I have data in a table and need to return the distinct value ...
0
votes
1answer
41 views
Average percent value in mysql
I'm trying to divide a value of the count by the value of a subquery and multiplying by 100 to obtain its percent. That code below works...
SELECT data, rota as rt, COUNT(cliente_id) /
(
SELECT ...
1
vote
2answers
26 views
AVG warning when compiling with visual studios
Im trying to compile my code in visual studios and every time i do so, AVG gives me a warning saying there is a threat "potentially harmful program hacktool.wun" and shows the file path for the exe ...
0
votes
1answer
46 views
SQL Server AVG and Excel AVERAGE producing different results?
I'm trying to show averages on SQL server, but when I test the data in Excel the results are not the same, there must be something obvious I am missing.
Here is the code and results from SQL server:
...
0
votes
2answers
52 views
AVG(DATEDIFF(d,Tabl1.date1,MIN(Table2.date1))) T-SQL
I am trying to create a report to provide data from a SQL Server database. I have 3 tables I am interested in, Client, Referral, Appointment. A client can have 1.* referrals and a referral can have ...
1
vote
3answers
68 views
SQL Group by using the First N elements in each group [duplicate]
Suppose I have the next table:
+------------+---------+
| MovieId | rating |
+------------+---------+
| 1 | 4 |
| 1 | 3 |
| 1 | 2 |
| 1 | ...
1
vote
1answer
44 views
MDX Add Calculated Member For Average
I have a working query I would like to change a little bit.
The working query gives me a calculated measure value for each campaign that a user has participated in.
Since in this query example, ...
-1
votes
2answers
80 views
Oracle SQL querying for average across several tables
Here are the relations:
CREATE TABLE employee (
name varchar2(15) not null,
ssn char(9),
sex char,
salary number(10,2),
dno number(4),
primary key (ssn),
foreign ...
0
votes
1answer
95 views
ORACLE AVG function query
I have four tables with the following construct:-
I am trying to construct a query which will output offerings which have an attendance below the average attendance for offerings of the course to ...
0
votes
1answer
25 views
I would like to store the results of a query, then compare those results to the next set. Possible?
//This is my query
SELECT bline_id, ROUND(Avg(flow),3) avg
FROM (SELECT id, bline_id, flow, date, CASE
WHEN @previous IS NULL
OR @previous = bline_id THEN @rownum := ...
0
votes
5answers
63 views
Rewrite avg without subquery [closed]
How I can rewrite this query without subquery??
select i.invoice_number, i.invoice_total
from invoices i
where i.invoice_total>(select avg(payment_total)
from ...
1
vote
2answers
74 views
Trouble with MySQL query using AVG()
I am using a query that takes an average of all the records for each given id...
$query = "SELECT bline_id, AVG(flow) as flowavg
FROM blf
WHERE bline_id BETWEEN 1 AND 30
...
0
votes
1answer
75 views
$avg not returning average [closed]
this is my code:
//Build the query
//match only records in cluster 1
DBObject match = new BasicDBObject("$match", new BasicDBObject("clusterId",_id));
//the projected result ...
0
votes
1answer
22 views
AVG didn't give the correct value - Postgresql
I have a table in which there many redundant points, I want to select distinct points using (distinct) and to select the average of some row (eg. rscp).
Here we have an example :
| id | point ...
1
vote
1answer
49 views
MySQL sum avg of last x number of results where results can be in different columns
I have a school debating database where I want to be able to see what score each school has averaged over their last 5 debates. If the schoold is hosting the debate there score is recorded in a column ...
0
votes
1answer
114 views
Updating multiple columns with data from subquery in MySQL
I am trying to update multiple columns in a row, with data from multiple columns in a subquery.
The following approaches did not work for me, and I can't find different ones that suit my needs:
...
0
votes
0answers
226 views
SQL trigger update another table column after insert
I have a table named Ratings with columns User_No, Recipe_No, and Rating
After insert, I would like to update the Avg_Rating column on another table named Recipes.
I'm new to SQL syntax, but this is ...
3
votes
3answers
178 views
SQL Average Time from timestamp stored as string
I have two columns called date and starthour in a Microsoft SQL Server table.
Both columns are char; Another guy make it and I don't know why it was built in this way. :)
date ...
0
votes
3answers
58 views
How to fetch the result of a query in Zend
I need to get the avg score in a variable. I am using zend and I have tried two queries and none of them are working:
$avg_query = $db->query("SELECT sid, AVG(score)
FROM ...
0
votes
1answer
35 views
mysql get avg value on a a field that needs to be modified first based on results of a case statement
I am attempting to get the weekly average of a field "weight" over a specified date range using mySQL. The spanner in the works here is that the weight is stored in Kg in some records and lbs in ...
-2
votes
2answers
112 views
select statement with count for months
Hi I am trying to create select which will count pickups from pickup table by months.
Select will be used in web site written on .NET.
Report will looks like this
I have 3 tables
create table ...
0
votes
2answers
46 views
mySql multiple time aggregates in query
I have managed to aggregate by time one value giving a query result like this:
SELECT date(takenat) AS takendate,
hour(takenat) AS HourTaken,
avg(reading) AS ch1av
FROM readings
...
0
votes
1answer
47 views
SQL - nested aggregates
I have this:
SELECT BRAND_ID, CAST (ROUND (AVG(PROD_PRICE), 2) AS NUMERIC (9, 2)) AS 'LARGEST AVERAGE'
FROM LGPRODUCT
GROUP BY BRAND_ID
and it displays a bunch of average prices, per ...
0
votes
1answer
77 views
Mysql ABS(AVG(field_name)) as total returns float number
I'm trying to get integer value with ABS and AVG functions in MySQL but it's still giving me float value.
select ABS(AVG(quantity)) as average from stocks
This query should return absolute integer ...
0
votes
3answers
70 views
Get AVG() of select statement
How can I get Average of a result of select query
example:
select x from dbo.table1 as a
where MONTH(a.mymonth) = 1 AND YEAR(a.myyear) = 2013
is it possible to use AVG() function?
1
vote
0answers
161 views
Error signing assembly due to AVG anti virus
The IT department updated the AVG antivirus software on my development machine yesterday and now I get the following error when I try to compile my assembly:
error CS1606: Assembly signing failed; ...
0
votes
0answers
99 views
AVG is NULL if the first value is zero
I use windowing function to create moving averages, this is the code:
select distinct a.TECH_NAME_SILK,
a.PAY_PERIOD_year,
a.year_ID,
a.Pay_Period_Start,
a.Pay_Period_End,
...
2
votes
4answers
117 views
Find the average of two combined columns in sql
I want to find the avg of the total of two columns. I want to count the total of col1 and the total of col2 then find the average(how many different rows they are in).
I have managed to come up with ...
0
votes
1answer
36 views
MYSQL average function outputs .0000
I have this simple column named "price" and want to get the average number of all the rows. I have this code:
$avg = mysql_query("SELECT AVG(price) FROM books WHERE
author='$postname'");
...
0
votes
1answer
144 views
Window function
I don’t have much experience with window functions and I have to use one for my average calculation,
This is my code:
AVG(b.TotalSilkHrs) OVER(partition BY b.TECHNICIANCODE
ORDER BY b.rankID
...
1
vote
2answers
112 views
Find the average salary several months back - MySQL
I want to find the average salary of the staffs who started work within 8 months ago.
I tried making the code but somehow it's displaying NULL..
SELECT AVG(salary) FROM Staff
WHERE salary = ...
0
votes
2answers
47 views
How to use an AVG() and a JOIN?
this is my SQL statement, but I cant get it to work. Could anyone perhaps tell me what I did wrong?
SELECT AVG(R.Rating), R.Track_id, T.Title, T.Artist, G.Genre, T.Track_length, ...
1
vote
3answers
122 views
SQL subquery runs slower than either query by itself
I have two queries that run fairly quickly by themselves--within a few seconds--when executed from PHPMyAdmin.
SELECT * FROM `testresults` WHERE `SCH_NAME` <> ''
SELECT AVG(pass_rate) FROM ...
0
votes
1answer
51 views
AVG datetime interval, show Days and Hours
I'm trying to calculate an average interval between TIMESTAMP (YY-MM-DD HH:MM:SS) records in a column (hit_date) from a table.
I did this in MySql:
SELECT DATEDIFF(MAX(hit_date), MIN(hit_date)) / ...
0
votes
1answer
61 views
Average days from dates Mysql, PHP [duplicate]
Possible Duplicate:
Calculate DateDiff in SQL in Days:Hours:Mins:Seconds format
I have this MySql query:
SELECT DATEDIFF(MAX(hit_date), MIN(hit_date)) / (COUNT(hit_date) - 1) AS hitavg ...
0
votes
3answers
62 views
Is there a shorter way to remove the first two values in a list?
I want to find the sum of a list not including the first two values:
values.remove(min(values))
values.remove(min(values))
avg = sum(values) / len(values)
Is there a simpler way to do this?
1
vote
3answers
58 views
MySQL issue in getting average of a column
I have a MySQL table having three columns id, name and height.
I want to run a query to return the name and height of all entries, along with the average height of all entries. All these things have ...
0
votes
2answers
173 views
Finding AVG value in SQL Query after SUM - Invalid use of group function
I have some query which works fine for me:
Select Name,sum(number_hours)/8)*100
from
T1
where name='PERSON_A'
group by name,booked_date
Name is always ONE same person which I put in where ...
0
votes
2answers
100 views
Apply aggregate function on subset of rows
I have a table that I want to calculate the average of one column but only for the last 10 rows.
SELECT AVG(columnName) as avg FROM tableName
I cannot apply top directly since this query only ...
0
votes
1answer
107 views
SQL Select Case and Average
Hello I have a table with the tenure (integer, calculated in weeks) of employees in which the tenure is automatically calculated. I'm then trying to do an average tenure per week. However I want to ...
1
vote
2answers
82 views
Select avg vote but leave out the top and bottom 5% of votes using mysql
I have a table with votes. Votes are ONLY numbers (no text, no yes/no etc).
raw data example
id | question_id | vote
1 | 63 | 80
2 | 63 | 13
3 | 63 | 992
...
...
0
votes
3answers
141 views
mysql having… > avg() doesn't work as expected
I've created two views to help calculate user_diary_number and then select users of whom diary numbers > average of total user's user_diary_number.
two views are like below:
create view ...
0
votes
3answers
180 views
Average and Case in SQL
I am trying to generate a report and the following code does not produce the desired results which gives me 2 lines rather than one.
The ScoreTypeID could have values of 22, 52, 3 or 4 . if it ...
1
vote
1answer
108 views
Django ORM how to Round an Avg result
I have a model in which I use Django ORM to extract Avg of values from the table. I want to Round that Avg value, how do I do this?
See below I am extracting Avg price from Prices model grouped by ...
1
vote
1answer
121 views
Creating an SQL average for multiple tables
I have two tables I need to create an average sum from...
Caravan Category M:1 Caravan (caravan has one category, category has many caravans)
Caravan (Caravan_no, Rental_amount, annual_rent....
...
4
votes
3answers
332 views
Python- How to find the average of multiple values/key in a dictionary
I have a dictionary that looks like this. . .
CombinedDict = {'Abamectin': [63, 31, 53], 'Difenzoquat metilsulfate': [185, 49, 152], 'Chlorpyrifos': [14, 26, 56], 'Dibutyl phthalate': [25, -17, -18] ...
0
votes
1answer
447 views
SQLDeveloper runs query but getting a “ORA-00979: Not a Group By expression” from hibernate
I have data that looks something like this:
sensorid | sampletime | correctedvalue | qualityflag
-----------------------------------------------------------------------
4472 | ...
1
vote
4answers
93 views
SQL select for average from another table
I spent a lot of time building this select, but Im not able to solve it. I have 2 tables. First table is called car and has PK (primary key) id_car and another columns name and so on. Second table is ...






