Tagged Questions
The avg tag has no wiki summary.
4
votes
5answers
199 views
Average of grouped rows in Sql Server
I have an Sql Server Table.. it's something like this:
Id ...... Column1 ...... Column2
````````````````````````````````
1 ........ 1 ............. 34
2 ........ 1 ............. 44
3 ...
4
votes
2answers
855 views
Strange Access Denied warning when running the simplest C++ program
I am just starting to learn C++ (coming from a Java background) and I have come across something that I can't explain. I am working through the C++ Primer book and doing the exercises. Every time I ...
4
votes
1answer
1k views
AVG in Sql - Float number problem
SELECT AVG(variable) AS Expr1, SUM(variable) AS Expr2
FROM ......
result for AVG is 2, but it is not true, it must be 2.95. What is the problem, any idea?
3
votes
3answers
64 views
AVG and COUNT in SQL Server
I have a rating system in which any person may review other. Each person can be judged by one person more than once. For the calculation of averages, I would like to include only the most current ...
3
votes
2answers
112 views
In SQL Dividing a Value by its mean
I am trying to divide a calculated field (in the example it is called CALC_TIPS) by the mean for that calculated field given a certain COMM_TYPE_ID. With this query I am able to extract the AVG for ...
3
votes
3answers
288 views
How to use avg function?
I'm new at php and mysql stuff and i'm trying to use an avg function but i don't know how to.
I'm trying to do something like this:
mysql_connect(localhost,$username,$password);
...
2
votes
1answer
44 views
mysql avg on conditional
is it possible to get the average value for a column, as well as the average value for the same column with a conditional? or simply to combine these two queries into one.
SELECT AVG( field ) from ...
2
votes
2answers
62 views
AVG functions problem
I have table with structure
id
YearBorn
sex
livelen
I need to receive output result table of average livelength(livelen) for both sexes
with struct
year, len1(female), len2(male)
My query
...
2
votes
1answer
564 views
MySQL: Get average of time differences?
I have a table called Sessions with two datetime columns: start and end.
For each day (YYYY-MM-DD) there can be many different start and end times (HH:ii:ss). I need to find a daily average of all ...
2
votes
3answers
641 views
How to average 3 values in Sql Server?
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. BUT 1, 2 or all 3 values might ...
1
vote
1answer
32 views
ORDERBY Month(datetime) SQL
Hello all I am using MS SQL Server 2008 R2 and needed some help with a small query
Here is my table:
Orders
-----------------
OrderID Date(datetime) Quantity
I need to find the avg, max and min ...
1
vote
2answers
84 views
Representation of decimal numbers with mysql float type?
I know that it is a bad idea to store decimal values as float in mysql.
Example: If I store a product the price of $ 5.01, there is no exact floating type representation of that number.
If I you do ...
1
vote
4answers
139 views
MySQL: how to get average of positive values only?
Suppose I have INT column, and I am using -1 to signify that no data was available at the time of the INSERT. I'd like to get an AVG of all values of this column that are 0 or larger.
Is this ...
1
vote
2answers
309 views
SQL Query, using COUNT and AVERAGES MS SQL Server Management Studio
I'm fairly new to SQL, I would like some help on this query please. Here is my script so far. Let me know if you need further information,
SELECT DISTINCT EstimName_String AS Inspector, ...
1
vote
2answers
138 views
MDX: avg advanced use
I am reaching the limit of my basic MDX knowledge on a problem, if anyone has an idea, every help will be welcome
Situation
This is the hierarchy I'd like to deal with. In my fact_table I have a ...
1
vote
2answers
61 views
Retrieving data from joined MySQL tables using an AVG in the WHERE clause?
I am trying to select data from multiple tables which uses an AVG in the WHERE clause.
SELECT company_metrics.*, companies.company_name, companies.permalink
FROM company_metrics LEFT JOIN companies
...
1
vote
2answers
177 views
Cakephp calculating average problem
I have this query:
$this->set('grades', $this->Grade->Query("
SELECT AVG(grade),
sections.section_name
FROM grades,
sections
WHERE sections.id = grades.section_id
AND ...
1
vote
3answers
674 views
Mysql AVG to ignore zero
I need to perform an avg on a column, but I know that most of the values in that column will be zero. Out of all possible rows, only two will probably have positive values. How can I tell mySQL to ...
1
vote
2answers
267 views
PHP session cookies blocked by end user security software
I have an issue with PHP session cookies which is affecting only users of Internet Explorer who are using security software including McAffee, AVG and Norton. Some (but apparently not all) users of IE ...
1
vote
2answers
145 views
How to select from tableA sum of grouped numbers from tableB above their sums average in Oracle?
I have data like this:
tableA.ID
---------
1
2
3
tableB.ID tableB.NUM
--------------------
1 10
1 15
2 18
3 12
2 12
2 15
3 13
1 12
I ...
1
vote
3answers
304 views
SQL Server 2008 and Almost-Progressive Sum and Average?
I have a table with several million rows, with an ID column and a DateTimeOffset column. The table simply tracks elapsed time for some operations.
Without touching a cursor or doing RBAR, how can I ...
1
vote
1answer
147 views
SQL database queries basic question AVG Difference
I have a really basic question on SQL.
Relational Schema:
Student (Sid, Sname )
Class (Sid, ClassName, mark)
ClassName = { MATH, ENGLISH, PHY, .......}
I want to list out all the student who have ...
1
vote
2answers
98 views
MySQL - working out the AVG for a subset of MAX values
I have a table with columns 'Date, Name, Score'.
I wish to get the MAX(Score) for rows which share a common value (for e.g. the same date or even name), before averaging them to give me a figure, for ...
1
vote
1answer
624 views
SSRS Including empty cells when calculating avg
Group,
This is hard to explain, but I am building a matrix report in SSRS. My row includes a product code, my columns are months (previous 13) and my values are units sold for the corresponding ...
1
vote
2answers
486 views
MySQL: Last 10 entries per user?
I have a table storing transactional data for users. To find a users rating you take the average score of the last 10 entries for that user. Is there a way to get that with SQL?
I need to be able to ...
1
vote
2answers
1k views
PHP - Custom error handling. Redirected 404 is being hijacked by AVG Anti-Virus. How to stop?
I have a website which uses the custom 404 error handling in PHP/Apache to display specific pages.
e.g. http://metachat.org/recent
I've a feeling this is a bad way of doing this, but it's code I ...
0
votes
2answers
36 views
AVG on same column by values in another column single sql query
I want to find AVG on same column by values in different column single sql query.
table - question_rating
review_id
question_id
rating
for each review there are multiple 16 questions and ratings. ...
0
votes
2answers
28 views
MySQL Average: Making Statement More Efficient
I'm using this MySQL statement to find a neighborhood's average property assessment. The problem is that I have to add a SELECT statement for each neighborhood-- and there are a lot of neighborhoods. ...
0
votes
3answers
58 views
SQL aggregate query error
I have 3 tables like this
player(id,name,age,teamid)
team(id,name,sponsor,totalplayer,totalchampion,boss,joindate)
playerdetail(id,playerid,position,number,allstar,joindate)
I want to select ...
0
votes
1answer
80 views
Suggestions for LINQ query
I have the following class for storing data in a List:
public class Values
{
public int ParamId { get; set; }
public DateTime TimeStamp { get; set; }
public double Value { ...
0
votes
0answers
33 views
CakePHP - Group by WEEK and User Column
I'm trying to create a line graph for a rating system. I have this working fine with a single employee but having some trouble with grouping when trying to return multiple employees.
What I ...
0
votes
1answer
50 views
slow query using avg in mysql
I have this table:
CREATE TABLE `table1` (
`object` varchar(255) NOT NULL,
`score` decimal(10,3) NOT NULL,
`timestamp` datetime NOT NULL
KEY `ex` (`object`,`score`,`timestamp`)
) ...
0
votes
2answers
32 views
How to optimize a JOIN and AVG statement for a ratings table
I basically have two tables, a 'server' table and a 'server_ratings' table. I need to optimize the current query that I have (It works but it takes around 4 seconds). Is there any way I can do this ...
0
votes
0answers
80 views
Windows 7 x64 and Firefox x32 with localhost ajax requests
I am developing RIA app that uses a lot of AJAX requests. In Firefox some AJAX requests timeout. In Google Chrome or IE8 everything is fine. Firefox timeouts are not consistent. Same kind of requests ...
0
votes
1answer
51 views
Trying to get the average of a count resultset
I have the following SQL:(bitemp)
SELECT COUNT (*) AS Count
FROM Table T
WHERE (T.Update_time =
(SELECT MAX (B.Update_time )
FROM Table B
WHERE (B.Id = T.Id))
...
0
votes
1answer
59 views
Dynamic use of MDX AVG function
Anyone have advice on how to build an average measure that is dynamic -- it doesn't specify a particular slice but instead uses your current view? I'm working within a front-end OLAP viewer (Strategy ...
0
votes
1answer
67 views
SQL combine COUNT and AVG query with SELECT
I need to get the average rating and the total number of ratings for a particular user and then select all single ratings (rating_value, rating_text, creator) as well:
$rating_query = ...
0
votes
4answers
116 views
Get the average of groups of n rows with MySQL
I'm currently stuck trying to get the average value of groups of n rows using MySQL.
I have a MySQL table (data_conso) composed of columns in the following format :
id (int); date(datetime); ...
0
votes
2answers
37 views
Best choice for a huge database table which contains only integers (have to use SUM() or AVG() )
I'm currently using a MySQL table for an online game under LAMP.
One of the table is huge (soon millions of rows) and contains only integers (IDs,timestamps,booleans,scores).
I did everything to ...
0
votes
2answers
81 views
Mysql query, fetching avg results
So i got this query, is it possible to fetch mysql results from avgscore ?
SELECT * FROM dog_clinic
LEFT JOIN (SELECT AVG(score) AS avgscore, input_id
FROM dog_clinic_score GROUP BY input_id) s ON ...
0
votes
1answer
55 views
Whi AVG function perform the SUM?
I would to execute a query with a calculated member which returns the AVG (of the measure) of the Coil belonging to a particular LINESPEED.
The query is:
With
Member [Measures].[Avg1] As
AVG(
...
0
votes
1answer
47 views
Help with AVG in Query with Left Join
I need help to write sql query to know avg of position.
SELECT p.date_add, p.pozycja, f.nazwa FROM fraza f
LEFT JOIN pozycja p ON f.id = p.parent_id
WHERE f.parent_id = 101 AND p.date_add BETWEEN ...
0
votes
3answers
74 views
How can I get mysql to pull in an average rating along with tag search?
I am trying to get my head round a complex mysql statement (complex to me anyway!).
Basically, I need to return a list of all products from within the products table
with an extra return value (their ...
0
votes
1answer
184 views
MDX and AVG function
Not sure if this is the right place for MDX question but it seemed to be the most appropriate.
I have a question about MDX and the AVG function.
I would like to compute the average sale amount by ...
0
votes
1answer
201 views
Get average from array
It looks like I can get the average of the whole array but not of each item in a array. I would like to avoid some loop.
I use the function AVG() for it.
$sql_statement = "SELECT AVG(answer) AS ...
0
votes
2answers
193 views
Use of AVG function in MySQL
I want to know the top 3 student in my database so I use AVG function but it seems I have some errors this is my code:
$result = mysql_query("SELECT grade.GStudNo, AVG(grade.Grade) as Grade, ...
0
votes
1answer
142 views
AVG and ISNULL in mysql
I need to achieve some thing like this
SELECT ISNULL(AVG(rating),0) FROM videorating vr WHERE vr.VideoId=11229;
If average is empty/null then I should get 0 as rating.
I am trying to optimize this ...
0
votes
1answer
44 views
in sql can i group sets of results to find out the percentage of each set
I would like to know if I do a query like this
Select pass_fail, timestamp
from test_execution
where site = 'test' and timestamp between '1234567890' and '1234567890'
Let's say this query ...
0
votes
1answer
413 views
Using ODP.Net with NHibernate with .net System.decimal
I am using ODP.net to run the aggregate AVG against an Oracle 10g database. I run this query directly on the database and it works fine:
select avg(ANSCHAFFUNGSKST) from IHObjekt
it returns: ...
0
votes
2answers
111 views
mysql avg() not working as expected
I'm having some trouble with MySql right now. I have an query that works just fine, I'm using it for a while, but today I got stuck with this.
The query is:
select avg(valor), tipo_id, users_id, ...