any simple query in sql server similar to 'select rownum from tablename'
row num
(2 posts) (2 voices)-
Posted 1 year ago #
-
Use the below query:
select ROW_NUMBER() OVER(Order by (select 1)) as RownumID, * from TableNamePosted 1 year ago #
Reply
You must log in to post.