0
votes
1answer
24 views
MYSQL fetch 10 posts, each w/ vote count, sorted by vote count, limited by where clause on posts
I want to fetch a set of Posts w/ vote count listed, sorted by vote count (e.g.)
Post 1 - Post Body blah blah - Votes: 500
Post 2 - Post Body blah blah - Votes: 400
Post 3 - Pos …
1
vote
1answer
27 views
Using Aggregate Functions Inside a Trigger In MySQL
I have a 'People' table with several attributes including 'age'. Each time I insert a new tuple into this table, I would like to find out the average age of all the people listed i …
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,
…
2
votes
4answers
104 views
Multiple SUM using LINQ
I have a loop like the following, can I do the same using multiple SUM?
foreach (var detail in ArticleLedgerEntries.Where(pd => pd.LedgerEntryType == LedgerEntryTypeTypes.Unloa …
1
vote
1answer
34 views
Aggregate functions - getting columns not included in the GROUP BY clause
I have a table which has three fields (item_id, source, and price). (item_id, source, and price) together make up the primary key.
item_id source price
------- ------- …
1
vote
2answers
69 views
How to sort by annotated Count() in a related model in Django
Hi, I'm building a food logging database in Django and I've got a query related problem.
I've set up my models to include (among other things) a Food model connected to the User m …
0
votes
2answers
62 views
How to Calculate Median?
I need to calculate a median on a set of data, so I created a temp table and have tried to follow some articles online with zero success, here is what I am working with:
CREATE TA …
0
votes
3answers
69 views
TSQL Group By including all columns
I have a TSQL Query that does something like this:
SELECT SUM(s.Amount) as TotalSales, p.ProductName
FROM SALES s
INNER JOIN Product p ON s.ProductID = p.ID
GROUP BY p.ProductNam …
1
vote
6answers
425 views
Function to Calculate Median in Sql Server
According to MSDN, Median is not available as an aggregate function in Transact-Sql. However, I would like to find out whether it is possible to create this functionality (using th …
0
votes
3answers
284 views
MYSQL : First and last record of a grouped record (aggregate functions)
I am trying to do fectch the first and the last record of a 'grouped' record. More precisely, I am doing a query like this
SELECT MIN(low_price), MAX(high_price), open, close
FROM …
0
votes
4answers
62 views
“Indexing” (aka maintaining a table of) aggregate data in SQL Server 2005
I have a table which maintains performance data of a system, each record is a call made to some important method and consists of the method name, its duration and a token - each re …
3
votes
4answers
89 views
Is it possible to perform a bitwise group function?
I have a field in a table which contains bitwise flags. Let's say for the sake of example there are three flags: 4 => read, 2 => write, 1 => execute and the table looks li …
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 …
3
votes
1answer
177 views
How do I get a sequence’s MINVALUE in Oracle 10g PL/SQL?
I wrote a PL/SQL script to set a sequence's value to the maximum value of a table's primary key:
DECLARE
max_idn NUMERIC(18, 0);
seq_nextval NUMERIC(18, 0);
increment_amount …
0
votes
1answer
318 views
DB2 SQL - median with GROUP BY
Hi everybody,
First of all, I am running on DB2 for i5/OS V5R4. I have ROW_NUMBER(), RANK() and common table expressions. I do not have TOP n PERCENT or LIMIT OFFSET.
The actua …
