Tagged Questions
The analytic-functions tag has no wiki summary.
8
votes
4answers
3k views
MySQL get row position in ORDER BY
With the following MySQL table:
+-----------------------------+
+ id INT UNSIGNED +
+ name VARCHAR(100) +
+-----------------------------+
How can I select a single row AND ...
6
votes
1answer
150 views
Oracle MIN as analytic function - odd behavior with ORDER BY?
This particular case was distilled from an example where the programmer assumed that for two shipments into a tank car, line #1 would be loaded first. I corrected this to allow for the loading to be ...
5
votes
3answers
218 views
How do I select a fixed number of rows for each group?
Here is some example data in a mysql table
a b distance
15 44 250
94 31 250
30 41 250
6 1 250
95 18 250
72 84 500
14 23 500
55 24 500
95 8 500
59 25 500
40 73 500
65 85 ...
4
votes
1answer
72 views
Interesting Oracle analytic query challenge
I'm fairly experienced with Oracle analytic functions but this one has stumped me. I'll kick myself if there's an obvious solution :)
I have a table, JOURNAL, which records Inserts, Updates and ...
4
votes
1answer
125 views
In which scenarios does SQL Server ROW_NUMBER() not start from 1?
We are using ROW_NUMBER() in our query. It is returning correct results in almost all scenarios. But for 1 user, it is behaving very differently.
With #TEST as (
select top 50
...
4
votes
2answers
151 views
Remove ORDER BY clause from PARTITION BY clause?
Is there a way I can reduce the impact of the 'ORDER BY lro_pid' clause in the OVER portion of the inner query below?
SELECT *
FROM (SELECT a.*,
Row_Number() over (PARTITION BY ...
4
votes
1answer
73 views
Oracle Version 10 - Do we need anything 'special' to run analytic functions
We're going to be deploying some code to a client who is using Oracle version 10. Some of our code uses Oracle analytic functions (LAG in particular). Is there anything special that needs to be ...
4
votes
7answers
7k views
SQL Row_Number() function in Where Clause
I found one question answered with Row_Number() function in where clause. When I tried one query, I was getting the following error.
"Msg 4108, Level 15, State 1, Line 1
Windowed functions can ...
3
votes
1answer
31 views
dense_rank() analytic function in oracle
SELECT empno, deptno
dense_rank() OVER (PARTITION BY deptno
ORDER BY sal NULLS LAST) SRLNO
FROM emp
WHERE deptno IN (10, 20)
group by empno, deptno --,sal
ORDER BY deptno, SRLNO;
This Query ...
3
votes
3answers
254 views
How can I perform linear interpolation using oracle SQL?
I am trying to use Oracle 11g (11.1 in dev, 11.2 in production) for numeric analysis, specifically linear interpolation on a table which has three columns of interest: a timestamp, a deviceid, and ...
3
votes
2answers
430 views
Oracle Analytic functions - How to reuse a PARTITION BY clause?
I have written a complex SQL query with Oracle in which I want to use two analytic function over the same partition.
Let's be quite simple but not too much:
SELECT col1,
MAX(col2) ...
3
votes
2answers
786 views
Advanced tutorial on analytic functions in Oracle/SQLServer
Can anyone recommend a good tutorial (or book perhaps) that covers advanced topics in the use of Analytic Functions?
I'm looking for something that covers both Oracle and SQLServer - or two separate ...
3
votes
3answers
780 views
mysql: group by ID, get highest priority per each ID
I have the following mysql table called "pics", with the following fields and sample data:
id vehicle_id filename priority
1 45 a.jpg 4
2 45 b.jpg 1
3 ...
3
votes
2answers
166 views
Beginner SQL question: querying gold and silver tag badges in Stack Exchange Data Explorer
I'm using the Stack Exchange Data Explorer to learn SQL, but I think the fundamentals of the question is applicable to other databases.
I'm trying to query the Badges table, which according to ...
3
votes
2answers
444 views
Displaying a single rank in MySQL table
I have a table called 'highscores' that looks like this.
id udid name score
1 1111 Mike 200
2 3333 Joe 300
3 4444 Billy 50
4 ...
3
votes
4answers
1k views
Oracle Analytic function for min value in grouping
I'm new to working with analytic functions.
DEPT EMP SALARY
---- ----- ------
10 MARY 100000
10 JOHN 200000
10 SCOTT 300000
20 BOB 100000
20 BETTY 200000
30 ALAN 100000
30 TOM ...
2
votes
2answers
169 views
Transaction activity running total in SQL
I am working with a transactions table. I want to generate a number of variables to determine the number of transactions performed by the same customer in the last 5 and 30 minutes and 1,2,3 and 4 ...
2
votes
2answers
154 views
How do I calculate a median-to-date variable using Oracle SQL?
I'm working with invoice data in Oracle SQL. I want to create a variable, "median account invoice amount to date", that gives the median invoice amount for an account up to that given invoice date.
2
votes
0answers
93 views
Syntaxic analysis and parser
I want to parse something like that :
path.to.variable
"path" and "to" are object named "Instance" and variable reference a double.
I've got the following grammar :
expr ::= ...
2
votes
1answer
96 views
SQL analytic functions - How to assign number to a partition?
I am using Oracle.
Suppose I am having a table with this sample, random, content:
columnA | columnB | content
--------------------------------
AfBkxZ | 292 | a
LDglkK | 181 ...
2
votes
2answers
274 views
Getting values relating to the max and min rows in Oracle
In Oracle 11g we need to be able to query a table to pull out information from rows with the highest and lowest values in a certain group. For example using the EMP table we'd like to find the name of ...
2
votes
2answers
268 views
Oracle SELECT query: collapsing null values when pairing up dates
I have the following Oracle query:
SELECT id,
DECODE(state, 'Open', state_in, NULL) AS open_in,
DECODE(state, 'Not Open', state_in, NULL) AS open_out,
FROM (
SELECT id,
...
2
votes
2answers
368 views
How do I Handle Ties When Ranking Results in MySQL?
How does one handle ties when ranking results in a mysql query? I've simplified the table names and columns in this example, but it should illustrate my problem:
SET @rank=0;
SELECT ...
2
votes
2answers
393 views
Oracle analytic function window defined by data
I have a table which represents a line-by-line dump of the data read from a particular text file format. Each line may represent a "master" or a "detail" line, indicated via rec_type code. I'd like to ...
2
votes
1answer
1k views
Oracle Analytics - partitions and ordering of sql queries
This came up when answering another user's question (TheSoftwareJedi)...
Given the following table:
ROW_PRIORITY COL1 COL2 COL3
0 0.1 100 <NULL>
12 ...
1
vote
3answers
251 views
Evaluate WHERE predicates on analytic functions before other predicates (Oracle analytic functions)
Background
Sample data set
#Employee
Id | Period | Status
---------------------
1 | 1 | L
1 | 2 | G
2 | 3 | L
I want a simple select query to yield employees' latest ...
1
vote
1answer
326 views
SQL Query based on ROW_Number not working
Basically I am trying to do a query to a page that holds just an image. I need to provide the tripID number and then the ROWID (as there could be multiple images) to receive a single image. I will be ...
1
vote
1answer
319 views
Google Analytics Cross-Domain Tracking Without Appending Cookies To URLs?
Is there a way to track two domains in Google Analytics without passing the cookie information in the URL?
1
vote
3answers
336 views
How to produce rank in Oracle
Need to rank the below by salary, with highest salary having rank 1.
The RANK column shown is what I'm after:
Empname sal address RANK
...
1
vote
2answers
221 views
How do I find the top N batters per year?
I'm playing around with the Lahman Baseball Database in a MySQL instance. I want to find the players who topped home runs (HR) for each year. The Batting table has the following (relevant parts) of ...
1
vote
2answers
279 views
How would I duplicate the Rank function in a Sql Server Compact Edition SELECT statement?
It doesn't look like SQL Server Compact Edition supports the RANK() function. (See Functions (SQL Server Compact Edition) at http://msdn.microsoft.com/en-us/library/ms174077(SQL.90).aspx).
How would ...
1
vote
3answers
517 views
tricky Oracle analytic function question
I'm new to Oracle analytic functions and I'm trying to find the best way to write my query.
The following is a simplified version of a table I'm working with...
CREATE TABLE my_table
(
pid ...
1
vote
1answer
278 views
Oracle Collect Over Analytical Function
Is it possible to use the 10g collect command as an analytical function by using OVER PARTITION or some other way?
e.g.
SELECT COLLECT(x) OVER (PARTITION BY y)
FROM table
Every time I try this ...
1
vote
3answers
736 views
How do I compress this Oracle resultset into values according to row priority, ignoring nulls?
I'll simplify the problem as much as possible:
I have an oracle table:
row_priority, col1, col2, col3
0, .1, 100, {null}
12, {null}, {null}, 3
24, .2, {null}, {null}
Desired result:
col1, col2, ...
0
votes
2answers
29 views
Fetching data only if there are multiple rows in the result
Suppose I have a table abc with columns p_id ,u_id, and comments. I want to fetch the data from this table only if there are multiple rows for a particular p_id value (there is a single row of "junk" ...
0
votes
2answers
74 views
ORA-00907 Error when using Analytic Function in a Query (PS/Query, Peopletools 8.51.12)
Query's throwing an ORA-00907 Error when I try to paste a list of values into a criteria.
Background: I'm not a developer, I'm just an end user that's studied enough to where I can write queries ...
0
votes
2answers
81 views
Not able to retrieve desired data from sql query
SELECT
a.alloc_date,
p.plan,
p.emp_id,
a.veh,
a.contri_type,
a.amount,
SUM (a.alloc_qty) AS sum_alloc_qty, -- 1000 funds distributed
...
0
votes
6answers
87 views
Finding a count of rows in an arbitrary date range using Oracle
The question I need to answer is this "What is the maximum number of page requests we have ever received in a 60 minute period?"
I have a table that looks similar to this:
date_page_requested ...
0
votes
3answers
76 views
Oracle analytics: using LAG values in calculation?
I have a table that records when tasks were completed. Tasks belong to a workflow, but in this example I'm just trying to get the LAG working.
I would like to find information about how long each ...
0
votes
3answers
126 views
replace NULL values with latest non-NULL value in resultset series (SQL Server 2008 R2)
for SQL Server 2008 R2
I have a resultset that looks like this (note [price] is numeric, NULL below represents a
NULL value, the result set is ordered by product_id and timestamp)
product ...
0
votes
3answers
69 views
How to make this Mysql query work?
My query:
SELECT *
FROM forum_topics
WHERE cat_id IN(1,2,3,4,5,6,7)
ORDER BY last_message DESC
LIMIT 7
I want to get the biggest and only one value of each cat_id (7 values total). How to ...
0
votes
3answers
242 views
Oracle SELECT query: collapsing NULL values when pairing up dates for different fields
This question is very much like my previous question, but a bit more complicated. Rob van Wijk's answer worked perfectly for my other question, and I've been using that as a starting point. My ...
0
votes
4answers
207 views
Interesting Row_Number() bug
I was playing with the Stack Exchange Data Explorer and ran this query:
http://odata.stackexchange.com/stackoverflow/q/2828/rising-stars-top-50-users-ordered-on-rep-per-day
Notice down in the ...
0
votes
1answer
130 views
In which SQL dialect was RANK() first introduced?
In which SQL standard was RANK() first introduced?
List of SQL standards:
SQL-86
SQL-89
SQL-92
SQL:1999
SQL:2003
SQL:2008
SQL Rank function: ...
0
votes
1answer
158 views
Applying Multiple Window Functions On Same Partition
Is it possible to apply multiple window functions to the same partition? (Correct me if I'm not using the right vocabulary)
For example you can do
SELECT name, first_value() over (partition by name ...
0
votes
1answer
152 views
Which databases have analytic functions like Oracle
Doesn't have to be the same syntax, but same or similar functionality.
Please provide the name used for the construct and a simple example.