Tagged Questions
The row-number tag has no wiki summary.
7
votes
9answers
20k views
4
votes
5answers
514 views
Should SQL ranking functionality be considered as “use with caution”
This question originates from a discussion on whether to use SQL ranking functionality or not in a particular case.
Any common RDBMS includes some ranking functionality, i.e. it's query language has ...
4
votes
3answers
2k views
LINQ-to-objects index within a group + for different groupings (aka ROW_NUMBER with PARTITION BY equivalent)
After much Google searching and code experimentation, I'm stumped on a complex C# LINQ-to-objects problem which in SQL would be easy to solve with a pair of ROW_NUMBER()...PARTITION BY functions and a ...
4
votes
6answers
25k views
How do I use ROW_NUMBER() in SQL?
I want to use the ROW_NUMBER() to get...
To get the max(ROW_NUMBER()) --> Or i guess this would also be the count of all rows
I tried doing:
SELECT max(ROW_NUMBER() OVER(ORDER BY UserId)) FROM ...
4
votes
5answers
5k views
How can I speed up row_number in Oracle?
I have a SQL query that looks something like this:
SELECT * FROM(
SELECT
...,
row_number() OVER(ORDER BY ID) rn
FROM
...
) WHERE rn between :start and :end
...
4
votes
3answers
6k views
MSSQL Select statement with incremental integer column… not from a table
I need, if possible, a t-sql query that, returning the values from an arbitrary table, also returns a incremental integer column with value = 1 for the first row, 2 for the second, and so on.
This ...
3
votes
3answers
1k views
ROW_NUMBER() and nhibernate - finding an item's page
given a query in the form of an ICriteria object, I would like to use NHibernate (by means of a projection?) to find an element's order,
in a manner equivalent to using
SELECT ROW_NUMBER() OVER (...)
...
2
votes
1answer
63 views
Pairing of login and logout datetime, and calculate workingtime
Pair login datetime with logout datetime from single table, and calculate workingtime.
EmployeeLogInOut table:
TransactionID bigint,
TransactionDate datetime,
Type smallint,
Automatic bit,
SalesDate ...
2
votes
3answers
787 views
How to use row_number() in SQL Server
I want to update row data where the row_number of the column (p_id) is 1.. but this syntax is providing error:
update app1
set p_id = 1
where Row_Number() = 1 over(p_id)
2
votes
4answers
3k views
SQL Query With Row_Number, order by and where clause
I have the following SQL querry:
select
ID, COLUMN1, COLUMN2
from
(select ID, COLUMN1, COLUMN2, row_number() over (order by 2 DESC) NO from A_TABLE)
where
NO between 0 and 100
What I ...
2
votes
4answers
4k views
Row numbers for a query in informix
i am using informix database,
i want a query which you could also generate a row number along with the query
Like
select row_number(),firstName,lastName from students;
row_number() firstName ...
1
vote
3answers
100 views
ROW_NUMBER() not sequencing records correctly
I had to copy the data from oracle tables to files.
I have a join query which fetches 800k records so i used row_number() function along with order by clause to generate 4 files containing 200k each.
...
1
vote
1answer
47 views
Row_Number with complex conditions
Is it possible to use Row_Number() to number rows on something else than a simple partition done with Group By ?
This is my particular case :
Id Type Date
-- ---- ----
1 16 Some ...
1
vote
3answers
164 views
Selecting every Nth row in Postgres
I was using this SQL statement:
SELECT "dateId", "userId", "Salary"
FROM (
SELECT *,
(row_number() OVER (ORDER BY "userId", "dateId"))%2 AS rn
FROM user_table
) sa
WHERE sa.rn=1 ...
1
vote
3answers
72 views
ROW_NUMBER OVER a new column
Is it possible to order by a new column inside row_number?
I would like to do something like this:
select text1 + text2 as NEW_TEXT, row_number over (order by NEW_TEXT) from table
but such sorting ...
1
vote
1answer
101 views
SQL Server 2000 row numbering
I am trying to obtain a sequential row numbering, but whatever I am trying is not working. Here is my query
select
l.seq,
l.mn_no as mn_no,
l.sb_no as sb_no,
l.dp_no as dp_no,
sum(costprice) as amt
...
1
vote
2answers
135 views
Apply increase to previous row, using field from current row
I have a temp table set up like this:
Type Rate TotalCost
---- ---- ---------
Type1 0.01 3276.00
Type2 0.01 3276.00
Type3 0.01 3276.00
However, I need to take the rate ...
1
vote
4answers
1k views
Row_Number() CTE Performance when using ORDER BY CASE
I have a table I'd like to do paging and ordering on and was able to get a query similar to the following to do the work (the real query is much more involved with joins and such).
WITH NumberedPosts ...
1
vote
3answers
1k views
Why does ROW_NUMBER OVER (ORDER BY column) return a different result order than just ORDER BY column?
I'm on SQL Server 2008, using NHibernate as persistence layer (although this problem is purely SQL, I believe).
I've boiled down my problem to the following SQL statement:
SELECT TOP 2
this_.Id ...
1
vote
2answers
2k views
SQL Server: join on derived table that contains WITH clause?
I'd like to join on a subquery / derived table that contains a WITH clause (the WITH clause is necessary to filter on ROW_NUMBER() = 1). In Teradata something similar would work fine, but Teradata ...
1
vote
2answers
812 views
SQL Server 2005 - Row_Number()
I'm trying to understand the unusual behaviour seen when ordering results in a descending order using the row_number() function when using a DISITINCT on the outermost select in my query as below:
...
1
vote
1answer
857 views
Referencing a MySQL sub-select in another query
I have a basic MySQL table, terms, comprised of an id and term field.
I want to create an alphabetically sorted dictionary index (in the literal sense), that would list ten 10 terms above the ...
1
vote
1answer
413 views
0
votes
0answers
22 views
db2 query to process results in batches of 5 million on multi table join with row_number()
I need to run a multi table query to return batches of 5million repeatedly until all rows are returned. Our db2 governor is killing my query due to excess rows. I have created a process to get all ...
0
votes
1answer
22 views
Query String: How to append the ID of a row of a newly inserted database row (PHP)?
OK, I can get the number of the last row created, as I do below. Now, I want to append it to the URL? query string so I can use this particular record on the next page.
Here's the way I'm trying to ...
0
votes
0answers
225 views
SQL Server Pagination w/o row_number() or nested subqueries?
I have been fighting with this all weekend and am out of ideas. In order to have pages in my search results on my website, I need to return a subset of rows from a SQL Server 2005 Express database ...
0
votes
0answers
122 views
row_number equivalent or syntax for Microsoft ODBC Text driver ACE version 12
The following query works as needed in MS SQL 2008 R2 Express:
select RECID, ETC, SS, LSSN, DUPCT, NOMBRE,
[PRIMER APELLIDO], [SEGUNDO APELLIDO], [DIRECCION 1], [DIRECCION 2],
...
0
votes
0answers
65 views
SQL Server Result Set Paging
What is the best way to retrieve from a huge result set only a small window of results?
I have read some previous questions on this topic, like this one, this one and this one, but all of them seem ...
0
votes
2answers
71 views
ROW_NUMBER() return values are not consistent
I used ROW_NUM() function for paging in ASP.NET
SELECT row_num, expense_id,email, reason, amount,date,category_name,is_income
FROM
(
SELECT e.expense_id,e.email, e.reason, ...
0
votes
1answer
196 views
ROW_NUMBER() SQL 2005 Query return Nulls
I'm with some problems to compare data from two different periods of a table using ROW_NUMBER() in SQL Server 2005, because of the Nulls.
I would be glad if somebody can give me some help.
CREATE ...
0
votes
2answers
112 views
sql loop and set properties
In SQL, I would like to query a list, in order by pageNumber
SELECT * FROM `comics`
WHERE 1
ORDER BY pageNumber ASC
Then, I would like to set their pageNumbers based on their index in the query ...
0
votes
1answer
108 views
Paging and custom-ordering a result
I want to query a table so that it´s ordered the following way:
1) "entry"
2) "entry#"
3) "entry something"
4) "..entry.."
I did this via Union All and 4 different queries.
But additionally, I want ...
0
votes
2answers
781 views
MSSQL Paging is returning random rows when not supposed too
I'm trying to do some basic paging in MSSQL. The problem I'm having is that I'm sorting the paging on a row that (potentially) has similar values, and the ORDER BY clause is returning "random" ...