how to get the rowid/rownumbes of a table in sqlserver
Answer Posted / dhivakar
SELECT
ROW_NUMBER() OVER (ORDER BY emp_id) AS rowid,
*
FROM employee
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why transaction is important?
What is used to replicate sessions between instances in coldfusion clusters?
Do you know the policy based administration feature of sql server 2008?
What the different types of Replication and why are they used?
Is the primary key column of a table an index in ms sql server?
Is candidate a key?
Which table keeps the locking information?
How many levels of sp nesting are possible?
explain what is a deadlock and what is a live lock? How will you go about resolving deadlocks? : Sql server database administration
Is null vs coalesce?
Explain indexed views and partitioned view with their syntax.
What are the different SQL Server Versions you have worked on?
What is function of CUBE ?
What is the use of RDBMS?
What is tempdb database? : SQL Server Architecture