473,756 Members | 7,019 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Any Inbuilt function like Oracle's ROWNUM to retrive the order of records

50 New Member
Hi all

I would like to know the order in which the records are saved in a table. I am a beginner in SQL, in Oracle we have the ROWNUM to retrive the same. Any option for this in SQL Server???


Regards
Reshmi
Dec 6 '06 #1
3 5148
almaz
168 Recognized Expert New Member
Hi all

I would like to know the order in which the records are saved in a table. I am a beginner in SQL, in Oracle we have the ROWNUM to retrive the same. Any option for this in SQL Server???


Regards
Reshmi
There is no consistent way to get the order of records in DB (unless you are using a clustered index for the table and select rows with "order by" clustered index).
Nevertheless, in SQL Server 2005 there is a great ROW_NUMBER ranking function that allows you to enumerate resulting rows over some order. Simplest example:

Expand|Select|Wrap|Line Numbers
  1. create table #table(ID int identity(1,1), Name nvarchar(100))
  2. insert #table (Name) values ('Peter')
  3. insert #table (Name) values ('Andreas')
  4. insert #table (Name) values ('George')
  5. insert #table (Name) values ('Met')
  6. insert #table (Name) values ('Jack')
  7.  
  8. select AlphebeticNameOrder = row_number() over (order by Name), * 
  9. from #table
  10. order by ID
Dec 6 '06 #2
iburyak
1,017 Recognized Expert Top Contributor
I changed above code a bit to convert it to MSSQL

[PHP]create table #table(ID int identity(1,1), Name nvarchar(100))
go
insert #table (Name) values ('Peter')
insert #table (Name) values ('Andreas')
insert #table (Name) values ('George')
insert #table (Name) values ('Met')
insert #table (Name) values ('Jack')

select IDENTITY(int, 1,1) AS ID_Num, name into #numbered_rows from #table order by name

select * from #numbered_rows[/PHP]
Dec 7 '06 #3
almaz
168 Recognized Expert New Member
I changed above code a bit to convert it to MSSQL
My code is MSSQL :). But only for 2005 version of MS SQL Server.
Dec 8 '06 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

5
3051
by: chripa | last post by:
Hi all I use php with oracle database and i need function like mysql_data_seek i need to set the result pointer to the row number I need. can anyone help me? Thank you Chripa
5
4379
by: Bruno Alexandre | last post by:
Hi guys, withou using SP, I want to be able to add a Parameter to the SQL Query and retrive the Recordset so I can use the Paging property under the recorset object.... how can I do this? I'm stuck here.
7
13479
by: ¢Ð¢ý¢ö | last post by:
I want to retrieve a range of record such as retrieving 11th to 20th records from 10000 records In SQL Server, i can use the "OFFSET" function. so i wanna ask does Oracle provide any function similar to "OFFSET" in SQL SERVER? Thanks in advance Regards
4
8984
by: Terry Coccoli | last post by:
Has anyone created a user function to return the ordinal position based on numeric input? In other words, f(1) returns 'st', f(2) returns 'nd', f(3) returns 'rd', etc.
2
4899
by: Rishi Kumar | last post by:
consider the following queries that deals with report pagination a ) select MYROWS.* from (select * from TABLE_NAME) MY_ROWS where rownum between 1 and 100 b) select * from TABLE_NAME where rownum between 1 and 100 My question : Does oracle optimize the first query so that it is not significantly different (on execution time) when compared to the second query ?
4
18280
by: pierig.gueguen | last post by:
Hello, I would like to know if the equivalent Oracle rownum exist in SQLServer. Here is a sample SQL code to explain what I want to do : select jobs.name, jobs.job_id, jobs.description, hist.message,
2
36224
by: krishhhna | last post by:
If we want to retrive 5,6,7 rows from a table,then we used rownum in a query in group by clause,but my doubt is rownum has individual values for each rows then how did you group rows based on rownum?
4
1470
by: Steve | last post by:
i know i know...just get over it. look at the date of the last post/response in an oracle ng. :) this is a mysql specific query. i want to do the same thing in oracle. i don't know how. the following gives a dynamic/unique id number to a set of selected records. it kind of mimics RANK() in oracle. it's based on a cartesian...anyway, if anyone can fill me in on a similar oracle translation to this mysql query, i'd just about break down...
6
14081
by: pradeep kaltari | last post by:
Hi All, I was just going through EMP table in oracle Scott schema. Say, I want to find out the first employee in alphabetical order who's name starts with 'A'. the following query gives me the desired result: SELECT * FROM ( SELECT ENAME FROM EMP WHERE UPPER(ENAME) LIKE 'A%' ORDER BY ENAME ASC
0
9456
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9275
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9873
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9846
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9713
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5142
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3806
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3359
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.