how to get the rowid/rownumbes of a table in sqlserver
Answers were Sorted based on User's Feedback
Answer / payal nath
SELECT ROW_NUMBER() OVER(ORDER BY <FieldName>)
FROM <TableName>
| Is This Answer Correct ? | 27 Yes | 5 No |
Answer / renu
Row_number() works on SQL 2005 and upper version, if u r
trying it on 2000 it will not work.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / vimal
SELECT ROW_NUMBER() OVER(ORDER BY eName ASC) AS Rno, *
FROM emp
asc or desc required
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / dhivakar
SELECT
ROW_NUMBER() OVER (ORDER BY emp_id) AS rowid,
*
FROM employee
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / samar
hi i had tried same but i am getting error
Server: Msg 195, Level 15, State 10, Line 1
'row_number' is not a recognized function name
here querry is
select row_number() over(order by Income_Verification_id
) from Dim_Income_Verification
plz reply !!
| Is This Answer Correct ? | 5 Yes | 7 No |
Answer / raman
If you want row id as ROWID in Oracle, use %%physloc%% to
get unique id for each row in a table.
Ex. Query to get physical address/rowid of first row in
table.
SELECT TOP 1 %%physloc%% AS ROWID FROM <UrTable>
| Is This Answer Correct ? | 1 Yes | 3 No |
What are the different Topologies in which Replication can be configured?
How can you start sql server in different modes?
What is sql server database?
If any stored procedure is encrypted, then can we see its definition in activity monitor?
What is primary key and example?
What is the native system stored procedure to execute a command against all databases?
How to select true false based on column value in sql server?
How to execute a stored procedure in ms sql server?
Explain system scalar functions?
What is a self join in sql server?
What is a unique key constraint?
How to retrieve field values using mssql_result()?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)